1

我创建了一个网络服务。我想使用 Ajax jQuery 访问这个 Web 服务。我可以访问同一个域。但我想从另一个域访问此 Web 服务。

有谁知道如何在 asp.net 中创建跨域 Web 服务?文件中的任何设置,web.config以便我从另一个域访问它?

我的网络服务

[WebService(Namespace = "http://tempuri.org/")]
[System.Web.Script.Services.ScriptService]
public class Service : System.Web.Services.WebService
{
    public Service () {
    }

    [WebMethod]
    public string SetName(string name) {
        return "hello my dear friend " + name;

    }
}

JavaScript

$.ajax({
    type: "GET",
    url:'http://192.168.1.119/Service/SetName.asmx?name=pr',
    ContentType: "application/x-www-form-urlencoded",
    cache: false,
    dataType: "jsonp",
    success: onSuccess
});
4

2 回答 2

0

安装 nuget 然后试试这些 下面是 nuget 库上 Json.Net 的链接:nuget.org/packages/Newtonsoft.Json

using Json;
using Newtonsoft.Json;
using System.Xml.Serialization;


     [WebService(Namespace = "http://tempuri.org/")] 
        [System.Web.Script.Services.ScriptService] 
        public class Service : System.Web.Services.WebService 
        { 
            public Service () { 
            } 

            [WebMethod] 
        [ScriptMethod(ResponseFormat = ResponseFormat.Json)]
            public string SetName(string name) { 
         return JsonConvert.SerializeObject("hello my dear friend " + name, Newtonsoft.Json.Formatting.Indented);

            } 
        } 
于 2012-09-03T09:14:34.210 回答
0

使用 jQuery 的 jsonp 数据类型确实是一个不错的选择,因为它可以使跨域脚本编写成为可能……但由于这是 json-with-padding,因此您必须确保您的 web 服务返回 json..

例如在这里查看一个好的入门:http ://encosia.com/asp-net-web-services-mistake-manual-json-serialization/

于 2012-09-03T10:13:10.647 回答