I am developing an Mobile Web App. I consume a SOAP XML based web service. But based on this thread Why is it not a good idea to use SOAP for communicating with the front end (ie web browser)?, I am planning to use JSON instead of SOAP XML.

Is there any library that will convert a SOAP based XML in to JSON format in .Net?

link|improve this question

feedback

2 Answers

Take a look at Json.NET. It is capable of converting JSON to and from XML.

link|improve this answer
feedback

There's no need to use a separate library to coax JSON out of ASP.NET services, long as you're okay with using POST requests and no GET requests. Here's an example of using jQuery to retrieve JSON from an ASMX service, for exmaple: http://encosia.com/using-jquery-to-consume-aspnet-json-web-services/

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.