是否可以仅使用 jQuery 的 AJAX 功能调用 Exchange Web 服务?如果是这样,任何代码示例都可以吗?我目前在与 IIS 的 Exchange.asmx 相同的目录中托管一个 HTML 文件。我在那个文件中运行这个脚本,我得到一个“不允许的方法”响应。有什么线索吗?(用户名、密码、域在下面的脚本中重命名,原因很明显......)
$.ajax({
url: "Exchange.asmx/FindItem",
data: '{"username":"username", "password":"password", "domain":"domain"}',
type: "POST",
contentType: "application / json; charset = utf-8",
dataType: "json",
success: function (data) {
alert("success " + data);
},
error: function (data) {
alert("error " + data.statusText);
}
});