使用jQuery jsonp对ASP.NET web服务进行跨域调用



我的问题是已知问题,在这里和这里讨论。但即使在阅读并实施了建议的解决方案后,我也无法使其发挥作用。

问题:web服务返回xml而不是json:

<?xml version="1.0" encoding="utf-8"?>
<string xmlns="http://tempuri.org/">"Now i am getting jsop string""2nd param"</string>

现在让我们把代码分成几个部分:

远程服务器(IIS 7.0、.NET 4):
web.config:

<?xml version="1.0"?>
<configuration>
        <system.webServer>
            <modules>
                <add name="JsonHttpModule.JsonHttpModule" type="JsonHttpModule"/>
            </modules>
        </system.webServer>
    <system.web.extensions>
        <scripting>
            <webServices>
                <jsonSerialization maxJsonLength="102400"/>
            </webServices>
        </scripting>
    </system.web.extensions>
    <system.web>
        <compilation debug="true" targetFramework="4.0" />
        <customErrors mode="Off"/>
        <webServices>
            <protocols>
                <add name="HttpGet"/>
                <add name="HttpPost"/>
            </protocols>
        </webServices>
    </system.web>
</configuration>


网络服务:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Services;
using System.Web.Script.Services;
using JsonHttpModule;
/// <summary>
/// Summary description for JSONP_EndPoint
/// </summary>
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
// To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line. 
[System.Web.Script.Services.ScriptService]
public class MyService : System.Web.Services.WebService {
    [WebMethod]
    [ScriptMethod(UseHttpGet = true, ResponseFormat = ResponseFormat.Json)]
    public string Sum(string x, string y)
    {
        return x + y;
    }
}


HttpModule类:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.IO;
using System.Text;
/// <summary>
/// Summary description for ContentTypeHttpModule
/// </summary>
namespace JsonHttpModule
{
    public class JsonHttpModule : IHttpModule
    {
        private const string JSON_CONTENT_TYPE = "application/json; charset=utf-8";
        public void Dispose()
        {
        }
        public void Init(HttpApplication app)
        {
            app.BeginRequest += OnBeginRequest;
            app.EndRequest += new EventHandler(OnEndRequest);
        }
        public void OnBeginRequest(object sender, EventArgs e)
        {
            HttpApplication app = (HttpApplication)sender;
            HttpRequest request = app.Request;
            //Make sure we only apply to our Web Service
            if (request.Url.AbsolutePath.ToLower().Contains("MyService.asmx"))
            {
                if (string.IsNullOrEmpty(app.Context.Request.ContentType))
                {
                    app.Context.Request.ContentType = JSON_CONTENT_TYPE;
                }
                app.Context.Response.Write(app.Context.Request.Params["callback"] + "(");
            }
        }
        void OnEndRequest(object sender, EventArgs e)
        {
            HttpApplication app = (HttpApplication)sender;
            HttpRequest request = app.Request;
            if (request.Url.AbsolutePath.ToLower().Contains("MyService.asmx"))
            {
                app.Context.Response.Write(")");
            }
        }
    }
}

客户端(localhost):

<script>
    $(function () {
        $('#btn_test').click(function () {
            $.ajax({ url: "http://tonofweb.com/MyService.asmx/Sum",
                data: { x: JSON.stringify("Now i am getting jsop string"), y: JSON.stringify("2nd param") },
                dataType: "jsonp",
                success: function (json) {
                    alert(json.d);
                },
                error: function () {
                    alert("Hit error fn!");
                }
            });
    });
});
</script>
    <input id="btn_test" type="button" value="POST" />

那么我在这里做错了什么?你可以自己测试,这是一个实时的web服务。谢谢你的帮助。

似乎web服务返回JSON的所有配置和属性都已就绪,但我在jQuery请求中注意到,您没有指定要传递的数据的内容类型。我已将其添加到以下代码中:

$.ajax({
  url: "http://tonofweb.com/MyService.asmx/Sum",
  contentType: "application/json; charset=utf-8",
  data: { x: JSON.stringify("1"), y: JSON.stringify("2") },
  dataType: "jsonp",
  success: function (json) {
    alert(json.d);
  },
  error: function () {
    alert("Hit error fn!");
  }
});

请注意,我已将contentType: "application/json; charset=utf-8",添加到请求设置中。

我已通过浏览测试了此代码http://tonofweb.com(目前返回403),包括使用jQuerify bookmarklet的jQuery,然后首先运行问题中的代码(没有contentType),然后运行我在上面发布的代码(有contentType)。

以下是Chrome开发工具中"网络"选项卡的响应:

不带内容类型

<?xml version="1.0" encoding="utf-8"?>
<string xmlns="http://tempuri.org/">"Now i am getting jsop string""2nd param"</string>

带内容类型

{"d":"12"}

因此,第二个至少会导致从服务器返回JSON。因此,在其他条件相同的情况下,我建议添加contentType。

有关返回JSON:的要求的解释,请参阅此处

ASMX和JSON–常见错误和误解

HTTP请求必须声明application/json的内容类型。这通知ScriptService它将以JSON形式接收其参数它应该以同样的方式作出回应。

现在您仍然有另一个问题,那就是请求在完成后调用错误函数。如果将dataType: "jsonp"更改为dataType: "json",它将调用成功函数。因此,回调包装器的实现有些错误,因为jQuery无法将响应作为JSONP处理。

现在我也没有看到回调被封装在响应中,对于JSONP,响应应该是这样的:

jQuery17106476630216930062_1326752446188({"d":"12"})

我注意到您正在链接到这篇关于如何从web服务进行JSONP响应的文章,但您没有遵循建议:您不使用Response.Filter,而是使用Response.Write

相关内容

  • 没有找到相关文章

最新更新