Difference between revisions of "Integration/REST"

From TempusServa wiki
Jump to navigation Jump to search
old>Admin
m
 
(19 intermediate revisions by 3 users not shown)
Line 1: Line 1:
== Introduction to the REST interface ==
== Introduction to the REST interface ==
The rest interface has two versions.
* v1, XML-version (default)
* v2, JSON-version
== Version 1 (XML) ==
This article has not yet been fully converted to Wiki format.
This article has not yet been fully converted to Wiki format.


Please download the original article: [http://www.tempusserva.dk/articlebase/Tempus%20Serva%20REST%20interface.pdf Tempus Serva REST interface.pdf]
Please download the original article: [http://www.tempusserva.dk/articlebase/Tempus%20Serva%20REST%20interface.pdf Tempus Serva REST interface.pdf]


 
=== Netbeans quick start guide ===
== Netbeans quick start guide ==


Steps to create a simple interaction
Steps to create a simple interaction
Line 21: Line 28:
==== Sample code for list view (BASIC athentication) ====
==== Sample code for list view (BASIC athentication) ====


    //Create session
<syntaxhighlight lang="java">
    FirmabilerClient session = new FirmabilerClient();
//Create session
    session.setUsernamePassword("admin", "password1223");
FirmabilerClient session = new FirmabilerClient();
session.setUsernamePassword("admin", "password1223");


    //Set search parameters (first parameter is a dummy)
//Set search parameters (first parameter is a dummy)
    FirmabilerList result = session.getList(FirmabilerList.class, "", "TITEL=Kasper" );
FirmabilerList result = session.getList(FirmabilerList.class, "", "TITEL=Kasper" );


    //Retrieve data and print
//Retrieve data and print
    List <FirmabilerListItem> list = result.getFirmabilerListItem();
List <FirmabilerListItem> list = result.getFirmabilerListItem();
    for(int i=0; i<list.size(); i++) {
for(int i=0; i<list.size(); i++) {
        //Handle single item
    //Handle single item
        FirmabilerListItem item = list.get(i);
    FirmabilerListItem item = list.get(i);
        System.out.println( item.getDataID() + "\t" + item.getNUMMERPLADE() );
    System.out.println( item.getDataID() + "\t" + item.getNUMMERPLADE() );
    }
}


    //Close connection
//Close connection
    session.close();
session.close();
</syntaxhighlight>


==== Sample code for list view (parameter credentials) ====
==== Sample code for list view (parameter credentials) ====


    //Create session
<syntaxhighlight lang="java">
    FirmabilerClient session = new FirmabilerClient();
//Create session
FirmabilerClient session = new FirmabilerClient();


    //Login and set search parameters  
//Login and set search parameters  
    FirmabilerList result = session.getList(FirmabilerList.class, "admin", "password1223", "TITEL=Kasper" );
FirmabilerList result = session.getList(FirmabilerList.class, "admin", "password1223", "TITEL=Kasper" );


    //Retrieve data and print
//Retrieve data and print
    List <FirmabilerListItem> list = result.getFirmabilerListItem();
List <FirmabilerListItem> list = result.getFirmabilerListItem();
    for(int i=0; i<list.size(); i++) {
for(int i=0; i<list.size(); i++) {
        //Handle single item
    //Handle single item
        FirmabilerListItem item = list.get(i);
    FirmabilerListItem item = list.get(i);
        System.out.println( item.getDataID() + "\t" + item.getNUMMERPLADE() );
    System.out.println( item.getDataID() + "\t" + item.getNUMMERPLADE() );
    }
}


    //Close connection
//Close connection
    session.close();
session.close();
</syntaxhighlight>
 
 
== Version 2 (Json) ==
 
Download the swagger file from:
 
<syntaxhighlight lang="ini">
https://<server>/<application>/rest/v2/swagger.json
</syntaxhighlight>
 
You can upload the content to this site to browse it: [https://editor.swagger.io/ SwaggerIO Editor]




== URL structure ==
== URL structure ==
Data list operations


  https://<server>/<application>/rest/<solution>
When logged in the following URLs are available without further authentication
 
Data list operations: GET, PUT, POST
 
<syntaxhighlight lang="ini">
http(s)://<server>/<application>/rest/<version>/<entity>
</syntaxhighlight>
 
Data item operations: GET, PUT, POST, DELETE
 
<syntaxhighlight lang="ini">
http(s)://<server>/<application>/rest/<version>/<entity>/<DataID>
</syntaxhighlight>
 
File list operations: PUT, POST
 
<syntaxhighlight lang="ini">
http(s)://<server>/<application>/rest/<version>/<entity>/<DataID>/<FieldName>/
</syntaxhighlight>
 
File item operations: GET, PUT, POST, DELETE
 
<syntaxhighlight lang="ini">
http(s)://<server>/<application>/rest/<version>/<entity>/<DataID>/<FieldName>/<FileName>
</syntaxhighlight>
 
=== Executing codeunit ===
 
Operations: GET, PUT, POST, DELETE
 
<syntaxhighlight lang="ini">
http(s)://<server>/<application>/rest/<version>/codeunit/<codeunitName>
</syntaxhighlight>


Data item operations
=== Query parameters ===


  https://<server>/<application>/rest/<solution>/<DataID>
The REST API supports the same filtering and search parameters, as the list-command [[Integration/Content_source]].

Latest revision as of 14:40, 13 May 2024

Introduction to the REST interface

The rest interface has two versions.

  • v1, XML-version (default)
  • v2, JSON-version


Version 1 (XML)

This article has not yet been fully converted to Wiki format.

Please download the original article: Tempus Serva REST interface.pdf

Netbeans quick start guide

Steps to create a simple interaction

  1. Add Webservice to ide (wadl import)
    • URL: [ServerName]/[ApplicationName]/rest/[SolutionSystemName].wadl
    • If import causes trouble: Download the wadl file
  2. Create a new project
    1. Add REST Client to project
      • Point to newly created webservice: [SolutionSystemName]
    2. Add JAXB bindings to project (use XSD schema)
      • URL: [ServerName]/[ApplicationName]/rest/[SolutionSystemName].xsd
      • If import causes trouble: Download the xsd file


Sample code for list view (BASIC athentication)

//Create session
FirmabilerClient session = new FirmabilerClient();
session.setUsernamePassword("admin", "password1223");

//Set search parameters (first parameter is a dummy)
FirmabilerList result = session.getList(FirmabilerList.class, "", "TITEL=Kasper" );

//Retrieve data and print
List <FirmabilerListItem> list = result.getFirmabilerListItem();
for(int i=0; i<list.size(); i++) {
    //Handle single item
    FirmabilerListItem item = list.get(i);
    System.out.println( item.getDataID() + "\t" + item.getNUMMERPLADE() );
}

//Close connection
session.close();

Sample code for list view (parameter credentials)

//Create session
FirmabilerClient session = new FirmabilerClient();

//Login and set search parameters 
FirmabilerList result = session.getList(FirmabilerList.class, "admin", "password1223", "TITEL=Kasper" );

//Retrieve data and print
List <FirmabilerListItem> list = result.getFirmabilerListItem();
for(int i=0; i<list.size(); i++) {
    //Handle single item
    FirmabilerListItem item = list.get(i);
    System.out.println( item.getDataID() + "\t" + item.getNUMMERPLADE() );
}

//Close connection
session.close();


Version 2 (Json)

Download the swagger file from:

https://<server>/<application>/rest/v2/swagger.json

You can upload the content to this site to browse it: SwaggerIO Editor


URL structure

When logged in the following URLs are available without further authentication

Data list operations: GET, PUT, POST

http(s)://<server>/<application>/rest/<version>/<entity>

Data item operations: GET, PUT, POST, DELETE

http(s)://<server>/<application>/rest/<version>/<entity>/<DataID>

File list operations: PUT, POST

http(s)://<server>/<application>/rest/<version>/<entity>/<DataID>/<FieldName>/

File item operations: GET, PUT, POST, DELETE

http(s)://<server>/<application>/rest/<version>/<entity>/<DataID>/<FieldName>/<FileName>

Executing codeunit

Operations: GET, PUT, POST, DELETE

http(s)://<server>/<application>/rest/<version>/codeunit/<codeunitName>

Query parameters

The REST API supports the same filtering and search parameters, as the list-command Integration/Content_source.