I\'m using JavaScript to access a ScriptService method called GetPerson(). The problem is that it is returning a fairly empty JSON string instead of an actual object string. The
And so it turns out that this was indeed a problem with my class file. Works a lot better with public properties.
public string name { get; set; }
2 hours of debugging is nothing vs. Stackoverflow induced inspiration. doh.