I would like to create a web service which returns results as JSON in ASP.NET with a HTTP GET and POST bindings.
In other words I would like a webservice which would return JSON if one types it's url in a browser. The XML representation is done automatically in NET 3.5.
I know I can use ScriptMethod (as shown below) to make ajax calls return JSON, but that is not what I'm after.
[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public SomeClass Example()