HttpWebRequest .GetResponse 抛出 WebException '操作已超时'

Posted

技术标签:

【中文标题】HttpWebRequest .GetResponse 抛出 WebException \'操作已超时\'【英文标题】:HttpWebRequest .GetResponse throws WebException 'The operation has timed out'HttpWebRequest .GetResponse 抛出 WebException '操作已超时' 【发布时间】:2015-06-18 09:55:02 【问题描述】:

我一直在从事一个使用 RTC API 和表单身份验证的项目。我遇到了一些奇怪的行为,我就是想不通。

到目前为止,我可以成功地在本地端到端地运行这个项目。也就是说,这段特定的代码可以:

    联系远程服务器并成功认证 身份验证后,我可以通过 XML 来更新 RTC 中的票证

当我发布到我们的 IIS (7.5) 服务器时,问题就开始了。一切正常,直到最后一次 .GetResponse 调用使用 PUT 方法传递我的 XML 以更新 RTC 中的票证。我不断收到“操作已超时”。

我花了几天的时间试图弄清楚这个做​​各种各样的事情,但没有任何东西被证明是有用的。

作为测试,我将第二次调用时的 PUT 方法更改为 GET。它有效!如果我使用带有 .AllowAutoRedirect = false 的 PUT,它的工作原理是我得到了响应,但是 RTC 端没有任何反应,因此请求显然被忽略了。我还注意到返回的状态被标记为“找到”而不是“确定”。

在这个阶段有些人认为可能是远程服务器和 Web 服务器之间缺乏连接。由于身份验证有效,并且这发生在同一台服务器上,因此情况并非如此。我还使用 Web 服务器上的 RESTClient 手动传递了 XML / PUT 调用,这被很好地接受了。

我只是不明白为什么它在本地运行时可以端到端工作,但一旦部署到 IIS 就可以播放?

我尝试使用日志跟踪,但我不完全确定我是否从中获得了任何有用的信息。它可能完全不相关,但我可以在 IIS 服务器上生成的日志中看到这一点:

<EventData>
  <Data Name="ContextId">00000000-0000-0000-12AF-0080000000F8</Data>
  <Data Name="ModuleName">ManagedPipelineHandler</Data>
  <Data Name="Notification">128</Data>
  <Data Name="HttpStatus">500</Data>
  <Data Name="HttpReason">Internal Server Error</Data>
  <Data Name="HttpSubStatus">0</Data>
  <Data Name="ErrorCode">0</Data>
  <Data Name="ConfigExceptionInfo"></Data>
 </EventData>

正如我所说,我不确定这是否与我遇到的问题有关,但我认为我会分享,而不是忽略它。

形成调用的代码(请原谅编码标准,它正在进行中,尝试不同的方法来解决这个问题变得很乱)

  //Setup webrequest
                CookieContainer _cookies = new CookieContainer();
                HttpWebRequest request = (HttpWebRequest)WebRequest.Create(getPath);
                var test44 = test4.ToString();

                request.CookieContainer = _cookies;
                request.ContentType = "application/rdf+xml";
                request.Accept = "application/rdf+xml";
                request.Method = "PUT";
                request.AllowAutoRedirect = true;
                request.AllowWriteStreamBuffering = true;
                request.Timeout = 40000;


                byte[] bytes = Encoding.ASCII.GetBytes(test44);
                request.ContentLength = bytes.Length;
                Stream dataStream = request.GetRequestStream();

                dataStream.Write(bytes, 0, bytes.Length);
                dataStream.Close();



                //Pass request
                logger.Info("Made it up to start of RTC request for secure document.");
                using (HttpWebResponse getrespn = requestSecureDocument(request, "https://myserver:9100/jazz", "username", "pass", test44))
                

                    //Stream ReceiveStream = getrespn.GetResponseStream();
                    // Encoding encode = System.Text.Encoding.GetEncoding("utf-8");
                    //StreamReader readStream = new StreamReader(ReceiveStream);
                    //response = readStream.ReadToEnd();


                    getrespn.Close();
                

与 RTC 服务器交互的代码段(基于来自https://nkumar83.wordpress.com/2013/06/13/consuming-rtc-rational-team-concert-oslc-apis-using-c-post-1-authentication/ 的示例,我自己进行了调整):

 public static HttpWebResponse requestSecureDocument(HttpWebRequest _requestItem, string _rtcServerURL, string _userName, string _password, string passXml)
    
        try
        
            //FormBasedAuth Step 1: Request the resource 
            HttpWebRequest _request = (HttpWebRequest)WebRequest.Create(_requestItem.RequestUri);
            _request.CookieContainer = _requestItem.CookieContainer;

            //store the response in _docResponse variable
            HttpWebResponse _docResponse = (HttpWebResponse)_request.GetResponse();

            //HttpStatusCode.OK indicates that the request succeeded
            if (_docResponse.StatusCode == HttpStatusCode.OK)
            
                //X-com-ibm-team... header signifies form based authentication is being used
                string _rtcAuthHeader = _docResponse.Headers["X-com-ibm-team-repository-web-auth-msg"];
                if ((_rtcAuthHeader != null) && _rtcAuthHeader.Equals("authrequired"))
                
                    _docResponse.GetResponseStream().Flush();
                    _docResponse.Close();

                    //Prepare form for authentication 

                    HttpWebRequest _formPost = (HttpWebRequest)WebRequest.Create(_rtcServerURL + "/j_security_check");


                    _formPost.Method = "POST";
                    _formPost.Timeout = 30000;
                    _formPost.CookieContainer = _request.CookieContainer;
                    _formPost.Accept = "text/xml";
                    _formPost.ContentType = "application/x-www-form-urlencoded";



                    string _authString = "j_username=" + _userName + "&j_password=" + _password;
                    Byte[] _outBuffer = Encoding.UTF8.GetBytes(_authString);
                    _formPost.ContentLength = _outBuffer.Length;
                    Stream _str = _formPost.GetRequestStream();
                    _str.Write(_outBuffer, 0, _outBuffer.Length);
                    _str.Close();


                    //FormBasedAuth Step 2: Submit the login form and get response

                    HttpWebResponse _formResponse = (HttpWebResponse)_formPost.GetResponse();

                    _rtcAuthHeader = _formResponse.Headers["X-com.ibm-team.repository-web-auth-msg"];

                    //Check if auth failed
                    if ((_rtcAuthHeader != null) && _rtcAuthHeader.Equals("authfailed"))
                    
                        //auth fialed
                        var fail = "";
                    
                    else
                    
                        //login successful

                        //FormBasedAuth Step 3: Resend the request for the protected resource
                        _formResponse.GetResponseStream().Flush();
                        _formResponse.Close();

                       using (HttpWebResponse getresp = (HttpWebResponse)_requestItem.GetResponse()) *** THIS IS TH LINE WHICH THROWS THE EXCEPTION ***
                       
                           return getresp;
                       
                    
                
            
            return _docResponse;

        
        catch (WebException e)
        
             var filePath = AppDomain.CurrentDomain.GetData("DataDirectory") + @"/trapA.xml";
                    using (StreamWriter writer = new StreamWriter(filePath, true))
                    
                        writer.WriteLine("Message: Failed to trigger getresponse successfully: " + e);
                    

        
        return null;
    

希望有人可以提供帮助:o)

【问题讨论】:

刚刚更新了更多信息。我一直在尝试从 webexception 中获取更多详细信息,即状态代码和状态描述,但似乎不可用,因为在尝试访问这些属性时会抛出空引用。返回的 HRESULT 是 -2146233079。 好吧,我想我会尝试使用 WebClient 方法,让它在本地工作,令人难以置信的是,当我发布到网络服务器时,我也遇到了同样的事情。我想知道服务器本身是否有问题,所以要尝试最新最好的 .net 安装程序(v4.5.2),看看是否有任何作用。 唉,那里没有欢乐:o( 【参考方案1】:

好吧,我很高兴地说我终于明白了这一点。事实证明,这个问题与 IIS 没有任何关系,并且在发布“如果”我没有使用 RTC 客户端更新票证时确实有效。

简而言之,我们的 RTC 客户端使用自定义脚本发布到我们的 Web api。然而,RTC 客户端似乎对您尝试更新的票证设置了记录锁,该记录锁会一直存在,直到我们的 API 提供响应为止。当然这不可能发生,因为部分响应是确认更新是否成功,由于 RTC 客户端的锁定而无法发生。

解决方案是尽快关闭来自 RTC 的呼叫。因此,验证并回调 RTC 以进行更新的代码段现在被一些新代码包裹起来,以创建一个新线程。这使得连接可以在大约 5 秒内关闭,同时我们的应用继续进行必要的调用以完成事务。

Thread t = new Thread(() = > 
//code here


【讨论】:

以上是关于HttpWebRequest .GetResponse 抛出 WebException '操作已超时'的主要内容,如果未能解决你的问题,请参考以下文章

webrequest 和 httpwebrequest 有啥区别

上传速度问题:HttpWebRequest [重复]

HttpWebRequest.GetRequestStream() 超时

如何使用 HttpWebRequest 进行摘要身份验证?

如何异步使用 HttpWebRequest (.NET)?

POST请求——HttpWebRequest