Hi all,
I'm uisng JQuery 1.3.2 and having problems with something that used to seem to work.
I'm making a call to a WCF service in another domain. My call is hitting my service and getting back a valid JSON object, but I keep getting this "invalid label" error.
var url = "http://.../GetEmployee?callback=?";
$.getJSON(url2,{empolyeeNo:42}, function(data) { alert("works!"); });
=1246048755308&echoThis=42">http://.../GetEmployee?callback=jsonp1246048506475&=1246048755308&echoThis=42
The response I see in the Firebug console is: Firebug's log limit has been reached. %S entries not shown. Preferences invalid label [Break on this error] {"d":"You sent this 42"}
Does anyone have any idea what I might be doing wrong? I've been around and around shown it to a couple JQuery guys. Nobody seems to know what the problem could be.
Full disclosure: App is .NET 3.5 w/ WCF server and an ASP.NET MVC application.
Thanks,