我在ASP.Net 4.0 Web应用程序上从jQuery调用在IIS上托管的WCF Web服务。我在jQuery中收到“Access Denied”错误。
这是我的方法:
function LoadName() {
var body = '{"FirstName": "John","Surname": "Howard"}';
$.ajax({
type: "GET",
url: "http://www.softlinkwebservices.com:1984/IISWCF/Service1.svc/FullName",
data: body,
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (response) {
var name = response.FullNameResult;
alert("Welcome : " + name + "!");
},
failure: function (msg) {
alert("Error processing request");
}
});
}
提前谢谢。
答案 0 :(得分:0)
您是否可以尝试浏览Internet Explorer中的服务,并通过要求您下载具有json格式的resposne的文件来查看成功响应。
如果您无法浏览该服务,那么它在服务器上会出错。确保可以通过指定的端口访问该服务。