ajax POST上的IE 10 HTTP 401错误

时间:2013-03-07 01:41:17

标签: ajax iis-7 http-post internet-explorer-10 http-status-code-401

I've been chasing down an issue并决定尽可能地对问题进行最基本的复制,希望简化的问题能帮助我解决这个问题。

我在javascript中通过ajax发布到网络服务时收到401。我将包含尽可能多的信息以及我尝试过的所有故障排除步骤。

我在我网站的根目录上创建了一个测试页面,并尝试使用普通JS和jquery进行ajax调用,结果相同。我已经将jquery注释掉了......

页面

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//" "http://www.w3.org/TR/html4/loose.dtd">

<head>

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>

<script type="text/javascript">
/*$(document).ready(function() {
    $('#button').click(function() {
        var ID = 2;
        var firstname = $('#First_Name').val();
        var lastname = $('#Last_Name').val(); 

        $.ajax({
            type: 'POST',
            url: '/service/name/service.aspx/ChangeName',
            contentType: 'application/json; charset=utf-8',
            dataType: 'json',
            data: '{ "ID": "' + ID + '", "firstName": "' + firstname + '", "lastName": "' + lastname + '" }',
            success: function() {
                console.log('success');

            },
            error: function(d) {
                console.log(d.responseText);
            }
        });
    });
});*/

function runAjax() {
    //Create Http request depending on browser
    var xmlhttp;
        if (window.XMLHttpRequest)
          {// code for IE7+, Firefox, Chrome, Opera, Safari
          xmlhttp=new XMLHttpRequest();}
        else
          {// code for IE6, IE5
          xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");}

    xmlhttp.onreadystatechange=function(){
      if (xmlhttp.readyState==4 && xmlhttp.status==200){
        document.getElementById("myDiv").innerHTML=xmlhttp.responseText;}
      }

    // Function to create 
    var url = "/service/name/service.aspx/ChangeName";
    xmlhttp.open("POST",url,true);
    xmlhttp.setRequestHeader("Content-Type", "application/json; charset=utf-8");
    var data=JSON.stringify({ "ID": "2", "firstName": "John", "lastName": "Doe" });
    xmlhttp.send(data);
}
</script>
</head>
<body>
<div id="myDiv">
      <table width="100%" cellpadding="3" cellspacing="0">
        <tbody>
        <tr>
            <td width="34%">
                <div align="right">
                    <strong>First Name: </strong>
                </div>
            </td>
            <td>
                <div>
                    <input name="First_Name" type="text"id="First_Name" size="20">
                </div>
            </td>
        </tr>
        <tr>
            <td>
                <div align="right">
                    <strong>Last Name: </strong>
                </div>
            </td>
            <td>
                <input name="Last_Name" type="text" id="Last_Name" size="20">
            </td>
        </tr>
      </tbody>
      </table>

      <div align="center">

        <input id="button" type="button" value="Update Student Details" onclick="runAjax();" style="margin:5px;">

        </div>
    </div>
</body>
</html>

现在除了IE10之外的每个浏览器都能正常工作。在小提琴手中,它显示IE正在获得401响应

请求标题 fiddler

POST http://dev.mysite/service/name/service.aspx/ChangeName HTTP/1.1
Accept: */*
Content-Type: application/json; charset=utf-8
Referer: http://dev.mysite/test_page.html
Accept-Language: en-US
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)
Connection: Keep-Alive
Content-Length: 46
DNT: 1
Host: dev.mysite
Pragma: no-cache

{"ID":"2","firstName":"John","lastName":"Doe"}

响应标题 fiddler

HTTP/1.1 401 Unauthorized
Content-Type: application/json; charset=utf-8
Server: Microsoft-IIS/7.0
jsonerror: true
WWW-Authenticate: Negotiate
WWW-Authenticate: NTLM
X-Powered-By: ASP.NET
Date: Thu, 07 Mar 2013 01:12:05 GMT
Content-Length: 105
Proxy-Support: Session-Based-Authentication

我在服务器上启用了失败的请求跟踪,这是它为该呼叫提供的信息:

请求记录失败 iis

1。 -GENERAL_REQUEST_START

2。 -FILTER_START

  • FilterName - C:\ Windows \ Microsoft.NET \ Framework \ v4.0.30319 \ aspnet_filter.dll

第3。 -FILTER_END

4。 -AspNetStart

  • ConnID - 0
  • 背景ID - {00000000-0000-0000-6425-0080000000BF}
  • Data1 - POST
  • Data2 - /service/name/service.aspx
  • Data3 -

5。 -GENERAL_REQUEST_END

  • BytesSent - 359
  • BytesReceived - 440
  • HttpStatus - 401
  • HttpSubStatus - 0

通过简化ajax请求我发现的事情是,它不仅是Windows 8的问题而且打开兼容模式也不起作用。

我已经尝试在IIS中禁用内核模式身份验证,我在Web服务文件夹followed these suggestions上进行了三次检查权限,我甚至尝试将Web服务放在与页面相同的目录中。所有结果都相同......非常感谢任何方向或帮助。

2 个答案:

答案 0 :(得分:1)

我知道这是一个古老的问题,但我遇到了它,因为我遇到了类似的问题。这对我有用 - 但是一旦我将它添加到web.config,我就停止了401错误:

<webservices>
    <protocols>
        <add name="HttpGet"></add>
        <add name="HttpPost"></add>
    </protocols>
</webServices>

答案 1 :(得分:0)

只是好奇我是否有同样的问题。

在网址末尾添加斜杠是否会修复IE 10中的问题?例如

/service/name/service.aspx/ChangeName/

而不是

/service/name/service.aspx/ChangeName

如果是这样,那么Fiddler和IE成名的Eric Lawrence在这里解释了它,http://blogs.msdn.com/b/ieinternals/archive/2010/11/22/internet-explorer-post-bodies-are-zero-bytes-in-length-when-authentication-challenges-are-expected.aspx