i'm building a REST api and debating what format should I use for the xml representation. i know it can be one defined in house but there are also lots for formats. wadl looks interesting but there seems to be a debate about it and it's new as well.

what are the recommendations(best practices for it) ?

thanks

link|improve this question

40% accept rate
feedback

1 Answer

up vote 0 down vote accepted

As long as it's valid XML that's a start. My general strategy for simple REST/XML services is as follows:

For parsing, you almost certainly want a single, always present root node, e.g. "response", which can contain either a result element or an error element. E.g.:

<response>
  <result>
    <answer>5</answer>
  </result>
</response>

The way you structure the results is up to you. You can decide whether to hold data in elemenets as CDATA (text notes, as show above) or as required attributes, e.g.

<answer value="5"/>

Another thing that is sometimes useful is to include your original query in the response, e.g.:

<response query="operation=add&a=2&b=3"> .. </response>

That way if you have multiple queries outstanding you can match them back to the original request.

link|improve this answer
yes it is valid xml - that is a must. – silviud Dec 3 '10 at 16:06
my question is more related with - should I invent my own way to do representation as you describe, risking perhaps to omit some of the REST benefits or just use a well known representation. – silviud Dec 3 '10 at 16:09
Well the WADL description is a way to formally describe your REST service - but the XML response format is still something you define and then describe in the WADL response representation. Unless your service is trivial, e.g. literally posting text to or reading text from a name resource, you will usually need to create a format for your data. – andrewmu Dec 3 '10 at 16:37
ok - so basically i do my plan on resources etc and how to represent them into xml - then i can use wadl to actually describe parameters type per method etc. - are there any constraints to this ? – silviud Dec 3 '10 at 17:10
Constraints? Not apart from writing it so that it's valid and correct. It's a REST interface - you choose how to represent your resources (URLs), what the operations mean (the HTTP methods) and return whatever you want to the client that lets you do what you need to do. If you wanted very strict discipline and lots of things that you /have/ to do, you would use SOAP :) – andrewmu Dec 3 '10 at 20:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.