vote up 1 vote down star
1

I'm currently looking into options for creating a client API for a RESTfull application. Up until now we have had WCF services to allow all application to connect to the Business Layer and we're growing dissatisfied with it.

We already have most of the infrastructure in place for the web (html and json requests) but we need to access the services from other applications (some will be linked against the main web app models library, others won't be).

I've been reading about WADL here and here and it seems like it would be beneficial. We could generate the wadl, the client libraries and use it to check javascript urls.

I would like to know what others have used, what worked and what didn't.

flag

60% accept rate

3 Answers

vote up 0 vote down check

You may want to look at http://www.xml-rpc.net/

link|flag
vote up 1 vote down

In the REST architecture:

  • The resources link to their description documents, if they have one, not the other way around.
  • The resources are not complex (not RPC like), thus there is usually no need for a description document.
  • Loose Coupling is king; contracts are both unnecessary and harmful.
  • Resources link to each others, removing most of the need for resource discovery services.
link|flag
Resources in REST can be complex. You need to document your media types in your API. – Wahnfrieden Aug 17 at 21:36
vote up 1 vote down

A good rest client API is a set of wrappers around curl, wget, or your language specific HTTP libraries. You might need some extra methods or functions to deal with the specifics of your application as well (i.e. specialized XML/JSON parsing), but that should be about it.

link|flag
why the downvotes? – Jonathan Arkell Aug 31 at 2:26

Your Answer

Get an OpenID
or

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