我在C#中有一个WebService,我想从另一个应用程序访问这个web服务。 防爆。有一个webservice在localhost中运行,我也有一个在localhost中运行的网站,这两个项目在不同的地方。问题是:如何在本地主机中使用ajax从我的网站调用此Web服务。
我所拥有的守则是这样的: WebService的
[System.Web.Script.Services.ScriptService]
public class Service1 : System.Web.Services.WebService
{
[WebMethod]
public String HelloWorld()
{
return "Hello World";
}
}
和客户
$.ajax({
type: "POST",
url: "localhost:52137/Service1.asmx?op=HelloWorld",
contentType: 'application/json; charset=utf-8',
dataType: 'json',
data: '',
success: function (data, status) {
alert(data.d);
},
error: function(data, status){
alert(status);
}
});