I am testing out json.net. I would like to use its linq-to-json syntax to return json from a function attributed [WebMethod] but I am getting errors.

For example if I use in the code behind

[WebMethod, ScriptMethod(UseHttpGet = true)]
public static JObject GetStuff() {
    return new JProperty("string", "value");
}

Being called by the following javascript:

  PageMethods.GetStuff(/* parameters */, function(data) {
      // do stuff with data
  });

I get the error "Cannot access child value on Newtonsoft.Json.Linq.JValue".

What should I be returning to ensure that my javascript data object gets filled with JSON?

link|improve this question

78% accept rate
feedback

1 Answer

Why not simply returning objects and leaving the JSON serialization to the underlying infrastructure:

public class MyModel
{
    public string Value { get; set; }
}

and in your web method:

[WebMethod, ScriptMethod(UseHttpGet = true)]
public static MyModel GetStuff() {
    return new MyModel {
        Value = "some value"
    };
}
link|improve this answer
I would rather return pure JSON since the underlying infrastructure is not particularly simple. I also wish to return both a dictionary and an array, where the dictionary will contain frequently occurring items in the array so I can reduce the JSON size. – sh54 Jan 13 '11 at 12:12
@sh54, by creating a custom object you will reduce the JSON size because you would include only the properties you need. – Darin Dimitrov Jan 13 '11 at 12:27
feedback

Your Answer

 
or
required, but never shown

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