We have a web application providing a service using a simple REST interface (GET/POST methods) and returning results in JSON format.
A client wants to use the service from an ASP application (I assume ASP.NET) and asks for example code.
Is there any standard/widely-acceptable procedure for consuming JSON based web services from an ASP.NET application? I’m not familiar with the .NET framework, but can work my way through C#.
Any pointers are welcome.
There’s quite a few JSON libraries available for .NET that will convert JSON to POCO objects:
The json.org website has references to these libraries and more.
There’s even support for Classic ASP (which is not the same as ASP.NET):