Java and other clients for WCF RESTful Services - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T08:10:26Zhttp://stackoverflow.com/feeds/question/463562http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/463562/java-and-other-clients-for-wcf-restful-services2Java and other clients for WCF RESTful ServicesTracker12009-01-20T23:37:13Z2009-01-21T00:04:57Z
<p>I am wanting to expose some data service endpoints for internal application use and am debating on WCF REST as a possible solution. What are my options for other languages/platforms as clients? Keeping in mind that I need to service Java, Python and .Net clients. </p>
<p>Essentially, I want to be able to demonstrate a single point of organization data access for multiple clients, and feel that the REST toolkit, especially with JSON could work very well. Being able to address multiple clients with a single data access layer would be a really good thing.</p>
<p>I feel that WCF + REST is probably the best solution for this on the server-side, but want to demonstrate the other languages working against the services. As a point of really selling the option for use beyond my developer group within the organization.</p>
http://stackoverflow.com/questions/463562/java-and-other-clients-for-wcf-restful-services/463627#4636272Answer by codemeit for Java and other clients for WCF RESTful Servicescodemeit2009-01-21T00:04:57Z2009-01-21T00:04:57Z<p>SOAP, JSON, POX ( plain old XML ) coexist endpoints for WCF services would solve your problem.</p>
<p>Check out the first result (my blog) after seaching keywords on
"SOAP, JSON, POX ( plain old XML ) coexist"</p>
<p>It contains a sample project as well.</p>