vote up 0 vote down star

I am having trouble deserializing my json string. I have a class of type person with public properties for sequence number of type int, first name, and last name. I want to pass an array of these objects in json and have them deserialized as a list so I can loop through them on the server, but asp.net says something about not being supported to be deserialized as an array. I have validated the json I am producing, and it is valid. Is there something special about the json that asp.net needs to have before it can deserialize? The funny thing is if I serialize a list object to json it looks exactly like the json I am producing. I must be missing something... To clarify, I'm using the asp.net ajax library to deserialize. This is what I get back from the web service. {"Message":"Type \u0027System.Collections.Generic.IDictionary`2[[System.String, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[System.Object, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]\u0027 is not supported for deserialization of an array."

Actually unfortunately this doesn't seem to have anything to do with deserializing, it appears that you can't pass an array of json objects to an asmx web service. Am I correct? If you can't do that, is it possible to pass a collection of json objects to a web service and have them processd on the server with asp.net and c#?

flag

65% accept rate
What are you using to serialize/deserialize json? What's the exact exception being thrown? – Mauricio Scheffer Dec 31 '08 at 14:51
Sorry, I'm using the asp.net ajax library to deserialize. i'm serializing the object to json manually based on form input, and when tested using the json validator linked to at json.org it says it is valid. – Chris Westbrook Dec 31 '08 at 14:59

4 Answers

vote up 1 vote down

I figured it out. I wasn't wrapping my json in an object like asp.net ajax requires. For future viewers of this question, all json objects must be wrapped with a main object before being sent to the web service. The easiest way to do this is to create the object in javascript and use something like json2.js to stringify it. Also, if using an asmx web service, the objects must have a __type attribute to be serialized properly. an example of this might be

var person=new object;
person.firstName="chris";
person.lastName="Westbrook";
person.seq=-1;
var data=new object;
data.p=person;
JSON.stringify(data);

This will create an object called p that will wrap a person object. This can then be linked to a parameter p in the web service. Lists of type person are made similarly, accept using an array of persons instead of just a single object. I hope this helps someone.

link|flag
vote up 0 vote down

OK, here is my code. Here is the person class. public class person { public person() { // // TODO: Add constructor logic here // }

    public int seq
    {
        get;
        set;
     }

    public string firstName
    {
        get;
        set;
     }
     public string lastName
     {
        get;
        set;
     }

}

and here is my json string

[{"seq":1,"firstName":"Chris","lastName":"Westbrook"}, {"seq":2,"firstName":"sayyl","lastName":"westbrook"}]

and here is the code I'm using [WebMethod] public void updatePeople(string json) { IList people = new JavaScriptSerializer().Deserialize>(json); //do stuff...

link|flag
vote up 0 vote down

Your code looks exactly the same as mine accept that mine has private fields in the class for sequenceNumber, firstName, and lastName and then public properties get and set from and to those fields. The only other difference is I'm using an asmx web service, is there some kind of limitation there? If not I'll just post my code and json for you to look at, this is really weird.

link|flag
vote up 0 vote down

Could you show the JSON string you are trying to deserialize and the way you are using the Deserialize method? The following works fine:

using System;
using System.Collections.Generic;
using System.Web.Script.Serialization;

namespace Test
{
    class Program
    {
        class Person 
        {
            public int SequenceNumber { get; set; }
            public string FirstName { get; set; }
            public string LastName { get; set; }
        }

        public static void Main() 
        {
            string json = "[{\"SequenceNumber\":1,\"FirstName\":\"FN1\",\"LastName\":\"LN1\"},{\"SequenceNumber\":2,\"FirstName\":\"FN2\",\"LastName\":\"LN2\"}]";
            IList<Person> persons = new JavaScriptSerializer()
                .Deserialize<IList<Person>>(json);
            Console.WriteLine(persons.Count);
        }
    }
}
link|flag

Your Answer

Get an OpenID
or

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