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#?
