ERRest Framework

Version 54.1 by David Avendasora on 2011/03/15 10:44
Warning: For security reasons, the document is displayed in restricted mode as it is not the current version. There may be differences and errors due to this.

Presentations

  • A presentation made by Mike Schrag on February 16th 2010 about ERREST. http://webobjects.mdimension.com/wonder/screencasts/ERRest-2010-02-16.mov
    It's also listed on the Screencasts Page on wocommunity.org, in iTunes and in the Podcasts RSS Feed.
  • Mike also did a session about it at WOWODC West 2009 (see below). 
  • A session on ERRest integration with Dogo was made by Pascal Robert at WOWODC 2010 (see below). 

Current and past WOWODC Sessions are available for purchase on the WebObjects Community Association website.

  1. Log in, or create an account here: http://www.wocommunity.org/apps/WebObjects/WOCommunity.woa/
  2. Go to the Community Store where there will be options for purchasing memberships

Class names vs Entity names

Everything internally in ERRest is based on entity names, as it is throughout WebObjects and EOF.

Most times your Entity Name will be the same as your Class name, but because Entity names must be unique there are situations where you will need to change the Entity name i.e., if you have two Classes named the same thing but are in different packages.

Lets say you have a class named "School" in your model, but have defined the Entity name as "ERPSchool" you will always refer to it as "ERPSchool" when passing it in as a parameter. For example:

Unknown macro: noformat. Click on this message for details.

 

Also, when naming your controller classes, you should use the Entity name.

Unknown macro: noformat. Click on this message for details.

 

If you want to call it "School" to the outside, add this before you register the default routes for "ERPSchool":
  

Unknown macro: noformat. Click on this message for details.

 

After adding this, no other code changes. All you're saying is that the routes and type names that send over the wire should all say "School".

WO HTTP adaptor

The WO HTTP adaptor coming with WO 5.3 doesn't support PUT and DELETE operations, so you won't be able to use those two HTTP methods. You need to use either the 5.4 adaptor or the Wonder version of the adaptor.

To-many relationships

ERRest won't let you add or remove objects in a to-many relationship, it can only update an existing object that is in the relationship. To add a new object to a relationship, you first need to fetch (or create) the parent object and make a second call to create the object and add it to the relationship. 

So let's say you have an existing Organization object and you want to add a Member to it. First, you need to fetch the Organization :


GET /cgi-bin/WebObjects/ra/Organization/1.json

and after, you create a new Member :


POST /cgi-bin/WebObjects/ra/Organization/1/addMember.json

Same Origin policy

If you are planning to offer your REST services to other people, they might run into Same Origin Policy problem. When using XMLHttpRequest on a page who is on a different domain than the REST service, XMLHttpRequest will tell you that it's not acceptable.

To get around that problem, many solutions has been found, but two of them are more accepted than the others : JSONP and HTTPaccesscontrol. I didn't try the JSONP route, but I did try HTTPaccesscontrol, and Dojo and Prototype are using this method to get around the Same Origin policy problem.

HTTPaccesscontrol works by adding new headers in the request that says which HTTP methods the request wants to do, and it's send as a OPTIONS HTTP method. You MUST reply with some headers to this OPTIONS request. Support for those headers was added in ERRest somewhere in october 2010. 

To enable the headers and support for the OPTIONS method, add this property:

ERXRest.accessControlAllowOrigin=*

If you want to allow origin for only a specific host, change the value of the property to the IP or DNS name of the requester.

Now, sadly only newer (2008 or later) browsers support the HTTP Access Control standard. For older browsers, you have to support JSONP, or the window.name transport. JSONP is not integrated in JSONP, but you can use the window.name transport by enabling support with the following property.

ERXRest.allowWindowNameCrossDomainTransport=true

Dates

The default formatter for dates is :


%Y-%m-%dT%H:%M:%SZ

If you want to work with the the GMT offset, you have to use this instead :


%Y-%m-%dT%H:%M:%S%z

To change it, you have to set the "er.rest.timestampFormat" property :


er.rest.timestampFormat = %Y-%m-%dT%H:%M:%S%z

If you are using Dojo, you can use dojo.date.stamp.toISOString and dojo.date.stamp.fromISOString to convert from or to a Java date object.

JSON Schema support

ERRest have support for JSON Schema since october 2010. JSON Schema is like a mini-WSDL, where it describe which properties JSON objects have. Dojo use JSON Schema to perform client-side validation, which is cool because you can have some automatic validation based on your model, and validation is done even before the data is sent back to your REST service.

To get the schema, you need to check in your route action. For example, for the "index" action, you do:


  public WOActionResults indexAction() throws Throwable {
   if (isSchemaRequest()) {
     return schemaResponse(yourERXKeyFilter());
    }
... do your normal work here
  }

And you call your REST route, but by adding "?schema=true" at the end of the URL. For example, /ra/events.json?schema=true. When you do that, a JSON Schema will be returned. Sample:


{
 "name":"Event",
 "properties":{
   "isFullDay":{
     "optional":true,
     "type":"string",
     "maxLength":5
   },
   "startDate":{
     "optional":false,
     "type":"string",
     "format":"date-time"
   },
   "realDuration":{
     "optional":true,
     "type":"integer"
   }
 }
}

So when you create a new Event with Dojo, if you try to put something else than a date in startDate, or you put a string in realDuration, it will fail because the schema says that startDate is using the date-time format, and that realDuration is a integer.