Creating a REST client API - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T02:02:10Zhttp://stackoverflow.com/feeds/question/249874http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/249874/creating-a-rest-client-api1Creating a REST client APImaud-dib2008-10-30T11:34:23Z2008-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#2499400Answer by Anders for Creating a REST client APIAnders2008-10-30T12:00:40Z2008-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#2499601Answer by Iannick for Creating a REST client APIIannick2008-10-30T12:09:51Z2008-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#2536031Answer by Jonathan Arkell for Creating a REST client APIJonathan Arkell2008-10-31T14:04:37Z2008-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>