我刚刚为 SharePoint 2013 创建了一个新的 Visual Studio 2012 解决方案。我为 SP2013 和一个 .asmx Web 服务创建了一个应用程序。我想从我的应用程序调用该网络服务,但我总是得到Error: Access is denied.
.
我的网络服务.cs
代码:
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
// To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.
[System.Web.Script.Services.ScriptService]
public class EmmaService : System.Web.Services.WebService
{
[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public static string HelloWorld()
{
return "Hello World";
}
}
我.ajax()
从应用程序的 javascript 调用:
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
url: "http://localhost:59054/EmmaService.asmx/HelloWorld",
dataType: "json",
success: function(resp) {
alert("success: " + resp);
},
error: function (xhr, ajaxOptions, thrownError) {
alert("error status: " + xhr.status);
alert("error status text: " + xhr.statusText);
alert("error response text: " + thrownError);
},
});
我看到人们在调用跨域 Web 服务时遇到同样的错误,但我的应用程序和服务在同一个域上,但我无法访问它,尽管我在任何地方都有所有可能的权限(假设我是此服务器上的唯一用户)。有人可以帮助我吗?谢谢!