我已经创建了一个web服务。我想使用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
});
使用jQuery的jsonp数据类型确实是一个不错的选择,因为它将使跨域脚本成为可能。。。但由于这是带填充的json,您必须确保您的webservice返回json。。
例如,请在这里查看这方面的良好开端:http://encosia.com/asp-net-web-services-mistake-manual-json-serialization/
安装nuget,然后尝试这是Json.Net在nuget图库上的链接: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);
}
}