Log in / create account
View source | Discuss page | Page history | Printable version   
Community Hurdle Assessment
ADVERTISEMENT
Accounting eLearning Courses
PDF Tools
Add page
Print collection (0 pages)
Collections help
Partnerships
SourceForge.net Logo
Openbravo ERP at SourceForge

SourceForge.net Logo
Openbravo POS at SourceForge

Open Solution Alliance Logo
Openbravo at Open Solutions Alliance

Projects/Data Access Layer/CrudWebServices

Contents

Overview

The DAL layer will be made available to the outside world using a webservice layer. For the 2.50 release a REST Webservice will be supported. SOAP support will be provided in the 2.60 release.

Glossary

This document uses the term business object to denote an entity and its dependent information. A business object can be a simple entity such as a currency which just has basic primitive fields. On the other hand it can also be a structure of entities, for example an order header with its order line. A business object structure always has one business object which is the owner of all the business objects in that structure, for example for a sales order the sales order header business object is the owner of the complete structure. Another way of describing this is that the order lines depend on the order header, i.e. an order line can not exist without its order header and when an order header is removed also the order line should be removed.

Some background information related to REST:

The REST concept was first described by Roy Fielding:

An overview article on REST with a lot of links to other material:

A quick intro into an example REST approach:

Some links related to REST versus SOAP, there is a fair amount of articles on the web on this topic:

Why REST?

There are a number of reasons why a REST approach makes sense for a data centric service: a REST approach

DAL REST Webservice

It is important to note that REST is not a standard but more an approach or architectural style. The DAL REST Webservice adheres to the REST approach:

Goals

The DAL REST webservice functionality should fullfill the following goals:

To achieve these goals the DAL REST Webservice function needs to support the following operations:

DAL REST Servlet

A request will be processed by the DAL REST webservice servlet. This servlet will use the url to determine the type of request and how to handle it. The DAL REST Servlet will also handle login and authentication (see below). A request (GET, POST, PUT) can consist of three parts:

A GET request will not have content and is completely controlled by the url path and its parameters. A POST and PUT request will have content which is assumed to be a valid xml document.

The response of a REST call will be an XML document, containing the requested data, a result XML message or an error XML message.

Single Request and Response

A single request is a request which points to one unique business object. For example the url: http://www.openbravo.com/dal/AccountingAcct/5 will return the xml for an instance of the AccountingAcct business object with id 5. The REST Webservice will retrieve this business object from the database, create XML for it and return the resulting XML. See below for a description of the XML.

Query Request and Response

A query url is used to retrieve a list of business objects. It can handle filter, sort and paging parameters. An example of a query url: for example: http://www.openbravo.com/dal/AccountingAcct?bpartner.id=5&orderBy=bpartner.name,locto.regionname&firstResult=19&maxResult=10. This url will return all AccountingAAcct objects which have a business partner with id 5, sorted by the business partner name and regionname of the to-location, the page starting at object 19 with 10 objects should be returned.

The REST query functionality should support the following parameters in the url:

The user has three types of possible operations which can be performed by the query:

It is still open if these operations are part of the URI path or are passed as a parameter.

Update/Create Request and Response

A business object can be updated/created through REST using the http POST or PUT command. The posted XML should adhere to the XML Schema generated by the REST Webservice (see below). With one exception, for update situations it is allowed to only include the changed properties in the XML.

The system will automatically check (by querying) if a business object is new or not. If no uuid is supplied then it will always be considered as new, if a uuid is supplied then a database query is done. If the uuid exists (for that type) in the database then the system will assume an update. If the uuid does not exist it is an insert, in which case the uuid (in the xml) is maintained.

If the update was successfull a success response is returned (<success/>), if it fails an error XML response is send back.

Remove Request and Response

The REST webservice will also support a delete or remove request. Delete requests use the http DELETE command. The Delete action expects a single URI pointing to the business object which needs to be removed.

Update multiple business objects Request and Response (Import)

The system should also support updating of multiple business objects which are passed in one file. The following aspects need to be taken into account:

The idea is that for updating/creating of multiple business objects in one call a specific URL should be used (for example http://www.openbravo.com/dal/import).

Business Object to XML

The XML response to a retrieval request consists of the data of the business object or business objects. The business object is translated to xml in the following way:

Property values are xml-ished as follows:

The element used for the XML version of a reference is also used in case when lists of references need to be exported.

Overview of return messages in XML

The design discusses different functionalities. To summarize this section lists the set of return types which can be expected for different types of REST requests:

If the requests fails then the error XML message (see below) is returned.

HTTP Return Codes

The DAL REST Webservice uses the following error codes:

Login and Security

The REST Webservice should provide a login method which makes it possible to directly login using a url. The following aspects play a role here:

To support webservice clients which do not support http sessions the REST service can support a local session cache which stores the context. When a client logs in the context is created and stored in the local session cache. The system returns a token as a response to the login action. The client can then use this token in subsequent actions. When the token is received then the context is retrieved from the local session cache and it is used. If the context is not present then the user has not logged in. It is not sure if this local session cache will be implemented in this cycle.

The REST webservice uses the standard DAL security control mechanism to control read and write access. The content of the returned XML depends on the read security settings of the user:

Non-updatable fields: Client, Organisation etc.

There are a number of properties for each business object which are not always changeable through the REST webservice:

XSD Schema Generation for REST approach

The DAL webservice should also generate a xsd schema on the basis of the runtime model. This xsd schema can be used by clients to easily identify which types can be queried. The XSD Schema should define the xml for all create, update and retrieve scenarios for single business objects as well as lists of mixed business objects.

Error Handling

When a request can not be processed and an error occurs an error XML document and the http response code 409 are returned. This error XML document only contains the error message.

Note that in a future release the exception should be logged using a unique id and then the id should be returned as an error code. This is the safest method which does not expose internal details to the outside world.

The stacktrace and other more detailed information is not sent out on purpose (because of security reasons).

Simple xslt templates

For demo purposes the dal will also have a number of xslt templates to translate the xml to lists and single display of a business object with click-through to referenced business objects.

Future

Test

The REST Webservice functionality is tested using junit testcases.

Retrieved from "http://wiki.openbravo.com/wiki/Projects/Data_Access_Layer/CrudWebServices"

This page has been accessed 233 times. This page was last modified 21:20, 4 October 2008. Content is available under Creative Commons Attribution-ShareAlike 2.5 Spain License.


Category: Projects