Creating a REST client API - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T02:02:10Z http://stackoverflow.com/feeds/question/249874 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/249874/creating-a-rest-client-api 1 Creating a REST client API maud-dib 2008-10-30T11:34:23Z 2008-10-31T14:04:37Z <p>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.</p> <p>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).</p> <p>I've been reading about WADL <a href="http://searchsoa.techtarget.com/tip/0,289483,sid26_gci1265367,00.html" rel="nofollow">here</a> and <a href="https://wadl.dev.java.net/wadl2java.html" rel="nofollow">here</a> and it seems like it would be beneficial. We could generate the wadl, the client libraries and use it to check javascript urls.</p> <p>I would like to know what others have used, what worked and what didn't.</p> http://stackoverflow.com/questions/249874/creating-a-rest-client-api/249940#249940 0 Answer by Anders for Creating a REST client API Anders 2008-10-30T12:00:40Z 2008-10-30T12:00:40Z <p>You may want to look at <a href="http://www.xml-rpc.net/" rel="nofollow">http://www.xml-rpc.net/</a></p> http://stackoverflow.com/questions/249874/creating-a-rest-client-api/249960#249960 1 Answer by Iannick for Creating a REST client API Iannick 2008-10-30T12:09:51Z 2008-10-30T12:09:51Z <p>In the REST architecture:</p> <ul> <li>The resources link to their description documents, if they have one, not the other way around.</li> <li>The resources are not complex (not RPC like), thus there is usually no need for a description document.</li> <li>Loose Coupling is king; contracts are both unnecessary and harmful.</li> <li>Resources link to each others, removing most of the need for resource discovery services.</li> </ul> http://stackoverflow.com/questions/249874/creating-a-rest-client-api/253603#253603 1 Answer by Jonathan Arkell for Creating a REST client API Jonathan Arkell 2008-10-31T14:04:37Z 2008-10-31T14:04:37Z <p>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.</p>