我试图在MVC Web应用程序中调用asp.net webservice。我刚刚将项目从MVC 1升级到MVC 4,除了调用以前在MVC 1应用程序中工作的服务之外,一切正常。问题是我收到“404 not found”错误。它甚至没有达到这个功能。
我用来调用服务和功能的代码如下所示。
function RunAsync(url, jsondata, success, error) {
$.ajax({
type: "POST",
url: url,
data: jsondata,
contentType: "application/json;charset=utf-8",
dataType: "json",
success: function(result) {
var obj = JSON.parse(result.d);
if (obj.Status == 'Success') {
eval(success + '(obj)');
}
else if ((error != null) && (obj.Status == 'Error')) {
eval(error + '(obj)');
}
else {
alert(obj.Message);
}
},
error: function(request, status, throwerror) {
var message = '';
message += 'The request could not complete.';
message += '<br />' + 'Request status:' + request.status;
message += '<br />' + 'Request response:' + request.responseText;
window.open('', 'exception').document.write(message);
}
});
}
我真的很难过这个。
任何帮助将不胜感激。提前谢谢。
答案 0 :(得分:0)
我几周前就发现了这个问题,发现IIS并没有提供我的服务请求。解决方法是使用以下内容重新注册IIS中的服务:
%windir%\Microsoft.net\framework\v3.0\WindowsCommunicationFoundation\servicemodelreg -i
我相信你必须以管理员身份运行这个&#34;。