I'm using jquery to call a webservice which returns a dataset with a couple of tables in it.

This was working ok until i needed to set up my webmethod to accept a parameter. I reflected this on the client side with

data: "{paramname:'" + paramval+ "'}",

I now get the following error when the webmethod returns. This happens regardless of whats being returned in the dataset

Error:{"Message":"A circular reference was detected while serializing an object of type \u0027System.Globalization.CultureInfo\u0027.","StackTrace":" at System.Web.Script.Serialization.JavaScriptSerializer.SerializeValueInternal(Object o, StringBuilder sb, Int32 depth, Hashtable objectsInUse, SerializationFormat serializationFormat)\r\n at ...etc

When the webmethod has no parameters the client side js looks the same as below except the data: line is removed.

function ClientWebService(paramval){
$.ajax({
    type: "POST",
    url: "WebService1.asmx/webmethodName", 
    data: "{paramname:'" + paramval+ "'}",
    contentType: "application/json; charset=utf-8",
    dataType: "json",
    success: function(msg) {
        ParseResult(msg.d);
    },
    error: function(err) {
        if (err.status == 200) {
              ParseResult(err);
        }
        else { alert('Error:' + err.responseText + '  Status: ' + err.status); }
    }
}); 

}

Edit: As per suggestion to change the request to

data: {paramname: paramval},

yields the following error.

Error:{"Message":"Invalid JSON primitive: paramval.","StackTrace":"
at System.Web.Script.Serialization.JavaScriptObjectDeserializer.DeserializePrimitiveObject()\r\n at System.Web.Script.Serialization.JavaScriptObjectDeserializer.DeserializeInternal(Int32 depth)\r\n at System.Web.Script.Serialization.JavaScriptObjectDeserializer.BasicDeserialize(String input, Int32 depthLimit, JavaScriptSerializer serializer)\r\n at System.Web.Script.Serialization.JavaScriptSerializer.Deserialize(JavaScriptSerializer serializer, String input, Type type, Int32 depthLimit)\r\n at System.Web.Script.Serialization.JavaScriptSerializer.Deserialize[T](String input)\r\n at System.Web.Script.Services.RestHandler.GetRawParamsFromPostRequest(HttpContext context, JavaScriptSerializer serializer)\r\n at System.Web.Script.Services.RestHandler.GetRawParams(WebServiceMethodData methodData, HttpContext context)\r\n at System.Web.Script.Services.RestHandler.ExecuteWebServiceCall(HttpContext context, WebServiceMethodData methodData)","ExceptionType":"System.ArgumentException"} Status: 500

link|improve this question

Just to note, you are right to send the json data as a string (vs actual json). You could try rephrasing the question to how to resolve the error: "A circular reference was detected while serializing an object of type System.Globalization.CultureInfo" (which is what is happening at the server) – meandmycode Mar 23 '09 at 12:33
feedback

4 Answers

up vote 4 down vote accepted

I changed my webmethod to return

ds.GetXml();

and this worked. Considering datasets are serializeable I'm not sure why I have to do this, but it gets me over this hurdle.

link|improve this answer
feedback

I had the exact same problem,

I removed Virtual keyword from my Entities which make lazy loading of object.

The problem solved!!

link|improve this answer
feedback

What is listoftextboxes, string array? Not sure what your parameter type is on the web method but they should match up.

link|improve this answer
My webmethod is set up to accept a string. Heres the method signature. [WebMethod(EnableSession = true)] public DataSet CustomerAddressValues(string listOfCustomerTextboxes) – user48408 Mar 23 '09 at 12:42
Ah, the problem is most likely the returning DataSet, serialzing it to json is causing problems. Really you need to convert the DataSet to something more simple that can be easily serialized. – meandmycode Mar 23 '09 at 12:59
If that were the case then the parameterless function would not work either. Its only with the introduction of a parameter in my webmethod the error occurs. also i've setup up both webmethods to return the exact same data for testing purposes so its not specific to whats inside the dataset either – user48408 Mar 23 '09 at 13:09
Can you give us a sample of the serialized json from your client? – chief7 Mar 23 '09 at 16:23
feedback

I know this question has been answered but I came across the same problem and thought I should put what worked for me here so others can hopefully tackle the problem.

data: JSON.stringify(Params),

By using the JSON.stringify method I got the required result

where params is equal to {"key":"value"}

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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