I know these API's are used for doing something easier than WCF (in terms of config and performance) for .NET, but I wanted to know if these API's can be used on other frameworks too?

Thanks, Thothathri

link|improve this question

58% accept rate
What exactly do you mean "used on other frameworks"? Any client can consume the REST API, since it's all just standard HTTP. ServiceStack (and perhaps the others) can also expose SOAP endpoints, and you can consume those with any SOAP client (.NET or otherwise). – Kevin Pullin Jun 4 '11 at 2:17
@kevin : can the wcf service also be consumed by any client (.NET or otherwise) ? – wittythotha Jun 4 '11 at 2:26
the WCF service can be consumed by most SOAP clients. I'd say all, but there's probably some that won't work... although any that don't likely have other issues. We have customers that connect with Java, PHP, custom tools, etc. to our WCF service without issue. – Kevin Pullin Jun 4 '11 at 3:39
2  
You are asking the wrong question - that is not about API but about protocols / architecture approaches used when exposing the service. Once you understand what SOAP or REST is you will understand how interoperability works. – Ladislav Mrnka Jun 4 '11 at 6:38
feedback

1 Answer

up vote 2 down vote accepted

All web service frameworks just serve JSON/XML/SOAP over HTTP - this is the path of greatest interoperability.

As for all ServiceStack demos, they're all consumed live with HTML/JavaScript, so no .NET on the client to speak of. Of course if you use ServiceStack's C# clients you get the benefit of a strong-typed sync and async clients.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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