vote up 0 vote down star

I wrote a [WebMethod] that return a string that store a serialized object

[WebMethod]
public string doStuffs() {
...
return JavaScriptConvert.SerializeObject(myObj); 
// JSON Serializer library is JSON.NET 1.3.1, for MONO
}

When I call the method with a $.post from JQuery:

  $.ajax({
    type: "POST",
    url: "/web/doStuffs",
    data: "{}",
    contentType: "application/json; charset=utf-8",
    dataType: "json",
    success: function(msg) {
      // Do stuffs
    }
  });

The problem is the response. Here what I get:

<?xml version="1.0" encoding="utf-8"?>
<string xmlns="http://localhost:8080/papi">{
 "field1" : "value1", "field2 : "value2", etc etc}</string>

Why JSON response has been encapsulated inside an XML? I can see from HTTP Response header is (wrongly?) set to:

Content-Type text/xml; charset=utf-8

How do I switch the response content type? Thanks.

flag
I don't have experience with Mono so I'll just comment. If your doStuffs() is a .Net web method, it might serialize its result as XML automatically. This is the case with ASP.Net .asmx web methods at least. – Mikko Rantanen Apr 26 at 9:15
ASFIK yes, it automatically serialize in XML. I am looking for a way to switch to JSON. – ObiKenKenobi Apr 26 at 9:29
What benefits does a WebMethod offer if you disable its serializing? I'm not sure that it is possible to skip the serialization step of WebMethod as that's more or less its main point. Or is this known to be possible? I believe even the url of "web/doStuffs" requires JSON functionality from the framework as the normal SOAP has only one endpoint and specifies the method in its body. – Mikko Rantanen Apr 26 at 9:55
An alternative would be to use a raw ashx http handler if Mono supports those. – Mikko Rantanen Apr 26 at 9:56

3 Answers

vote up 0 vote down

If I do:

$.post(
    "/web/doStuffs",
    { username: $("#username").val() },
    function(data){
      var obj = $(data).children();
    },  		 
    "xml"
);

I will have JSON in var obj ready to get parsed with JS. This should work well.

link|flag
Kind of defeats the purpose of JSON though? – Mikko Rantanen Apr 26 at 16:12
vote up 0 vote down

Does Mono support DataContractJsonSerializer?

UPDATE: it would appear so, but maybe there are bugs?

link|flag
vote up 0 vote down

AFAIK WebMethods return objects which get serialized automatically by ASP.NET. The default serializer is SOAP, as that used to be the expected format for web services.

However, ASP.NET AJAX in System.Web.Extensions has a replacement handler that uses a JSON serializer. See http://vampirebasic.blogspot.com/2009/04/aspnet-ajax-in-mono.html for how to register it.

link|flag

Your Answer

Get an OpenID
or

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