I'm trying to use jQuery and JSON with a C# Web Service that I wrote. No matter what, the following code will only output in XML.

Webservice Code

[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public string HelloWorld() {
    return "Hello World!";
}

I also have these attributes assigned to the class

[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[ScriptService]

jQuery Code

$.ajax({
    type: "POST",
    contentType: "application/json; charset=utf-8",
    url: "ScheduleComputerDS.asmx/HelloWorld",
    data: "{}",
    dataType: "jsonp",
    success: function(data) {
        alert(data);
    }
});

The ASMX page always returns as content type "text/xml". Anything I'm missing?

EDITS: In response to a couple answers:

If I have the datatype as just "json" the content is still XML and jQuery also will not call my callback function. If I add the "&callback=?" to the url, IIS throws a HTTP 500 error.

My class does inherit from "System.Web.Services.WebService".

From doing some research on your guys answers, it looks like I do need to mess with WCF. Unfortunately the JSON that is returned is more designed for MS Ajax and is a lot of useless bloat for my use. I may look into an open source library like Jayrock or something similar.

Thanks for all your help!

link|improve this question

Im new to Stackoverflow so I dont know how this comment is going to look in reference to the others but... If I have the datatype as just "json" the content is still XML and jQuery also will not call my callback function. If I add the "&callback=?" to the url, IIS throws a HTTP 500 error. – TheDude Mar 19 '09 at 20:13
@TheDude - you can edit your original question to add this information in. There's an edit link under the tags on the bottom left of the question section – Russ Cam Mar 19 '09 at 20:14
If you can use the WCF REST Starter Kit, just released a Preview 2 – bendewey Mar 19 '09 at 20:15
feedback

4 Answers

up vote 2 down vote accepted

As far as I know, the ScriptService attribute just allows the service to automatically create a JavaScript proxy (by appending /js to the endpoint address - ScheduleComputerDS.asmx/js in your case). It does not allow you to call the operations on the service the way you're trying to do.

You could instead use a RESTful WCF service (which requires .NET 3.5) which you can access by sending a properly shaped URI via an HTTP GET.

link|improve this answer
feedback

I think there's a typo:

dataType: "jsonp",

Should be:

dataType: "json",
link|improve this answer
awesome :) i made this mistake recently but i had "script" in there. was copied and pasted from an example – Simon_Weaver Mar 19 '09 at 20:08
Ah, no +1 then? lol – eduncan911 Mar 19 '09 at 21:02
feedback

Rich Strahl has a really basic post that should help you out with this.

http://www.west-wind.com/weblog/posts/164419.aspx

link|improve this answer
This link was very helpful. Thank you – TheDude Mar 19 '09 at 20:35
feedback

Have you tried with datatype json?

Also, have a look at Encosia's Using jQuery to Consume ASP.NET JSON Web Services article on the matter. There's some good info on common pitfalls too.

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.