Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP.NET - What is the correct approach to JSON based web services with jQuery?

What is the correct way to convert ASP.NET SOAP-based web services to JSON-based responses? ...And then call these from jQuery?

What are "best practices" when integrating jQuery based AJAX and ASP.NET? Articles? Books?

like image 613
BuddyJoe Avatar asked Nov 12 '08 00:11

BuddyJoe


2 Answers

JSON conversion to .NET classes can be done with System.Runtime.Serialization and System.Runtime.Serialization.JSON. I suspect you're more interested in setting up function calls from client to server. I think it is worth trying this tutorial.

In this tutorial, you'll need to add a webservice '.asmx' file. In the asmx file you will be able to create functions callable from client script. Your ASP.NET pages can also reference client script generated to make calling the .asmx functions.

If you actually want to do JSON serialization though, you could also use the following:

using System.Runtime.Serialization;
using System.Runtime.Serialization.Json;

public class JsonSerializer
{
    // To make a type serializeable, mark it with DataContractAttribute
    // To make a member of such types serializeable, mark them with DataMemberAttribute
    // All types marked for serialization then need to be passed to JsonSerialize as
    // parameter 'types'

    static public string JsonSerialize(object objectToSerialize, params Type[] types)
    {
        DataContractJsonSerializer serializer = new DataContractJsonSerializer(
            types[0], types.Skip(1));

        MemoryStream ms = new MemoryStream();
        serializer.WriteObject(ms, objectToSerialize);
        ms.Seek(0, SeekOrigin.Begin);
        StreamReader sr = new StreamReader(ms);
        return sr.ReadToEnd();
    }
}
like image 153
Frank Schwieterman Avatar answered Oct 12 '22 00:10

Frank Schwieterman


The following article Extending an existing ASP.NET Web Service to support JSON by Bobby Soares on codproject.com talks about using custom method attributes to achieve desired result.

like image 3
Abhijit Avatar answered Oct 12 '22 00:10

Abhijit