我想从 asp.net 2.0 应用程序访问启用 SSL 的 WCF 服务。站点托管在 IIS 7 上。
这是代码
function getCourse() {
$.ajax({
type: "GET",
url: "https://website.com/service.svc/task",
processData: false,
contentType: "application/json; charset=utf-8",
dataType: "json",
timeout: 7000,
username: "someusername",
password: "somepassword",
success: function (data) { alert("success"); },
error: function (xhr, status, error) { alert("error"); }
});
};
我收到 401 错误,我没有在 iis 或 webconfig 中进行任何与 ssl 访问相关的配置?我在这里错过了什么吗?还是我使用 asp.net 2.0 应用程序的事实导致了错误?