ASP.NET WebService 仅在使用 Http Get 但 web.config 设置正确时错误地返回 XML 而不是 JSON

Posted

技术标签:

【中文标题】ASP.NET WebService 仅在使用 Http Get 但 web.config 设置正确时错误地返回 XML 而不是 JSON【英文标题】:ASP.NET WebService mistakenly returning XML instead of JSON only when using Http Get but web.config is set up right 【发布时间】:2011-04-25 03:49:44 【问题描述】:

症状: 当我发出一个 Web 服务请求(从使用 .ajax 的 JQuery 到 ASP.NET .asmx 文件)时,如果它是使用 GET 而不是 POST 发出的,那么 .asmx 文件总是返回 XML 而不是 JSON。如果我将调用转回帖子,它会像 JSON 一样响应。

目标: 如何使用 HTTP GET 获取 JSON 而不是 XML?

我已经进行了相当多的谷歌搜索,这不是通常的嫌疑人,例如缺少 ScriptService 或未在 web.config 中注册处理程序。它的行为就像脚本处理程序工厂只在帖子上工作?请帮我指出正确的方向!

服务器代码:

namespace mynamespace

    /// <summary>
    /// Summary description for ServiceAddresses
    /// </summary>
    [WebService(Namespace = "http://tempuri.org/")]
    [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
    [ToolboxItem(false)]
    [System.Web.Script.Services.ScriptService]
    public class MyService : System.Web.Services.WebService
    
        [WebMethod]
        [ScriptMethod(ResponseFormat = ResponseFormat.Json, UseHttpGet = true)]
        public string HelloWorld()
        
            return "Hello World at " + DateTime.Now.ToLongTimeString();
        
    

客户端代码:

function testhelloworld(postorget) 
    var webMethod = '/servicedir/MyService.asmx/HelloWorld';
    $.ajax(
        type: ('GET'===postorget)?'GET':'POST',
        url: webMethod,
        contentType: 'application/json; charset=utf-8',
        dataType: 'json',
        data: "",
        success: function(msg) 
            $('#info').text(msg.d);
        ,
        error: function(xhr, ajaxOptions, thrownError) 
            $('#info').text('Error: ' + xhr.responseText);
        
    );

如果我将服务切换为 UseHttpGet = false 并将客户端请求切换为 POST,则很好。如果我使用 GET,则发回 XML。

提琴手说请求是:

GET http://myserver/servicedir/MyService.asmx/HelloWorld? HTTP/1.1
Host: myserver
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.9) Gecko/20100824 Firefox/3.6.9 ( .NET CLR 3.5.30729)
Accept: application/json, text/javascript, */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
X-Requested-With: XMLHttpRequest
Referer: http://myserver/test/index.aspx

回复:

HTTP/1.1 200 OK
Server: Microsoft-IIS/5.1
Date: Thu, 14 Oct 2010 00:31:44 GMT
X-Powered-By: ASP.NET
X-AspNet-Version: 2.0.50727
Cache-Control: private, max-age=0
Content-Type: text/xml; charset=utf-8
Content-Length: 115

<?xml version="1.0" encoding="utf-8"?>
<string xmlns="http://tempuri.org/">Hello World at 8:31:44 PM</string>

web.config 的相关部分:

<webServices>
  <protocols>
    <add name="HttpGet"></add>
    <add name="HttpPost"></add>
  </protocols>
</webServices>
. . .
        <remove verb="*" path="*.asmx"/>
        <add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
 . . .
  <remove name="ScriptHandlerFactory"/>
  <remove name="ScriptHandlerFactoryAppServices"/>
  <add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
        <add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>

完全相同,但使用 UseHttpGet = false 重新编译并通过 POST 请求有效。

Fiddler 说 POST 请求是:

POST http://myserver/servicedir/MyService.asmx/HelloWorld HTTP/1.1
Host: myserver
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.9) Gecko/20100824 Firefox/3.6.9 ( .NET CLR 3.5.30729)
Accept: application/json, text/javascript, */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Content-Type: application/json; charset=utf-8
X-Requested-With: XMLHttpRequest
Referer: http://myserver/test/index.aspx
Content-Length: 2
Pragma: no-cache
Cache-Control: no-cache


回复:

HTTP/1.1 200 OK
Server: Microsoft-IIS/5.1
Date: Thu, 14 Oct 2010 00:37:03 GMT
X-Powered-By: ASP.NET
X-AspNet-Version: 2.0.50727
Cache-Control: private, max-age=0
Content-Type: application/json; charset=utf-8
Content-Length: 33

"d":"Hello World at 8:37:03 PM"

先发制人地回答未回答的问题:

我想使用 GET,因为我希望客户端能够缓存。

我知道 get 存在安全问题,例如发布在 scott gu 的博客上。

我知道我不能使用 ASP.NET 的脚本东西,只能自己做,或者试试 Jayrock。但是,我想了解为什么现有的 ASP.NET ScriptHandler 不起作用。

【问题讨论】:

【参考方案1】:

不确定 asmx Web 服务,但我们使用 WCF,它可以在方法上使用这些属性

[WebGet(RequestFormat = WebMessageFormat.Json,
ResponseFormat = WebMessageFormat.Json]

【讨论】:

以上是关于ASP.NET WebService 仅在使用 Http Get 但 web.config 设置正确时错误地返回 XML 而不是 JSON的主要内容,如果未能解决你的问题,请参考以下文章

如何在ASP.net中调用webservice里的一个方法

Asp.net Webservice - 使用 jquery AJAX 安全调用 Web 服务

在 asp.net 中阻止对 WebService.asmx 的访问

asp.net WebService的一个简单示例

如何使用 Asp.net 设置 .asmx webservice 启用跨域

asp.net webservice cookie 保存后NAME有值,Value却没有值 代码如下: