HTTP错误401.2发出HttpRequest时

时间:2012-05-01 17:21:05

标签: c#

我正在尝试发布到asp.net网页并收到生成的xml。

这是我的代码:

        Uri url = new Uri("https://www.dmr.nd.gov/oilgas/feeservices/getcpfilesxml.asp");
        HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
        request.Credentials = nc;
        request.Method = "POST";

        Byte[] postBuffer = Encoding.UTF8.GetBytes("FileNumber=04113");
        request.ContentLength = postBuffer.Length;
        request.ContentType = "text/xml; Charset=UTF-8";

        using (Stream postData = request.GetRequestStream())
        {
            postData.Write(postBuffer, 0, postBuffer.Length);
        }

        HttpWebResponse response = (HttpWebResponse)request.GetResponse();

当我运行此操作时,出现HTTP错误401.2错误说明:您无权使用您提供的凭据查看此目录或页面,因为您的Web浏览器正在发送Web服务器的WWW-Authenticate标头字段未配置为接受。

在网站上使用asp.net页面时,这是我在Fiddler中获得的标题信息:

HTTP/1.1 200 OK
Date: Tue, 01 May 2012 15:34:44 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 4325
Content-Type: text/xml; Charset=UTF-8
Cache-control: private
Keep-Alive: timeout=15, max=99
Connection: Keep-Alive

使用此身份验证信息:

  • 没有代理验证标头。
  • 没有WWW-Authenticate标头。

运行我的应用程序时,这是我在Fiddler中获得的标题信息:

HTTP/1.1 200 OK
Date: Tue, 01 May 2012 17:18:04 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 124
Content-Type: text/xml; Charset=UTF-8
Cache-control: private
Set-Cookie: ASPSESSIONIDASADTBCS=JEBNCDNDNEPNLEBIEAFHENJF; path=/
X-Pad: avoid browser bug

使用此身份验证信息:

  • 没有代理验证标头。
  • WWW-Authenticate Header存在:Basic realm =“www.dmr.nd.gov”

如何避免推送WWW-Authenticate Header?

1 个答案:

答案 0 :(得分:0)

经过进一步调查,我发现身份验证问题并不是我的问题。显然我想要一个GET操作,我正在运行一个POST操作。