web服务返回xml虽然返回格式是json

时间:2013-07-10 11:34:36

标签: c# jquery ajax web-services

这是网络服务

public class HelloWorld : System.Web.Services.WebService
{

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

这是javascript ajax代码

 $(document).ready(function () {
        $.ajax({
            url: "Service/HelloWorld.asmx/Hello",
            dataType: 'json',
            type: 'POST',
            cache: false,
            crossDomain: true,
            timeout: 15000,
            success: function (rtndata) {
                alert('Success : :' + rtndata);
            },
            error: function (xhr, errorType, exception) {
                alert("Excep:: " + exception + "Status:: " + xhr.statusText);
            }
        });
    });

获取错误

    Excep:: Invalid JSON: <?xml version="1.0" encoding="utf-8"?>
<string xmlns="http://tempuri.org/">Hello World</string>Status:: OK 

2 个答案:

答案 0 :(得分:0)

尝试使用

[ScriptMethod(UseHttpPost=true, ResponseFormat=ResponseFormat.Json)]

还要从服务中返回一个对象,以便客户端可以更加可预测地使用它。

return new Result() { Value = "some string" };

答案 1 :(得分:0)

确保您在web.config中的Handler部分下设置了ScriptHandlerFactory。

<httpHandlers>
     <remove verb="*" path="*.asmx"/>
     <add verb="*" path="*.asmx" validate="false"
          type="System.Web.Script.Services.ScriptHandlerFactory,
          System.Web.Extensions, Version=1.0.61025.0, Culture=neutral,
          PublicKeyToken=31bf3856ad364e35"/>
</httpHandlers>

有关详细信息,请查看以下链接:

http://www.asp.net/web-forms/tutorials/aspnet-ajax/understanding-asp-net-ajax-web-services

修改

我建议你阅读Dave Ward的博客文章,讨论安装和配置错误:

http://encosia.com/asmx-scriptservice-mistakes-installation-and-configuration/