底层连接已关闭错误

时间:2010-09-09 08:22:29

标签: c# .net web-services

如果有人熟悉这个问题,我似乎偶尔会在我的网络服务客户端中获取它:

底层连接已关闭:接收时发生意外错误。无法从传输连接读取数据:远程主机强制关闭现有连接。在System.Net.HttpWebRequest.GetRequestStream(TransportContext& context)    在System.Net.HttpWebRequest.GetRequestStream()

这是我用于请求和响应Web服务的代码:

 public string GetWebResponse(string data, IOffer offer)
    {
        _loggingManager.LogProcess(offer, true, "Request", "Request", data, offer.OperatorCode, true);

        DateTime start = DateTime.Now;
        StringBuilder returnedXml = new StringBuilder();
        string outputstring = string.Empty;
        ASCIIEncoding encoding = new ASCIIEncoding();
        StreamReader r = null;

        /*try
        {*/
            if (!string.IsNullOrEmpty(data))
                outputstring = Regex.Replace(data, "\\s+", " ");

            outputstring = outputstring.Replace("utf-16", "utf-8");
            string PostData = "xml=" + outputstring;

            byte[] Bytedata = encoding.GetBytes(PostData);

            //fixme
            objWebHTTPReq = (HttpWebRequest)WebRequest.Create(GetEndpointAddress(offer));

            objWebHTTPReq.ContentType = "application/x-www-form-urlencoded";
            objWebHTTPReq.Accept = "text/html";
            objWebHTTPReq.ContentLength = Bytedata.Length;
            objWebHTTPReq.Method = "POST";

            objWebHTTPReq.KeepAlive = false;

            string httpOutput = objWebHTTPReq.Headers.ToString();

            objStream = objWebHTTPReq.GetRequestStream();
            objStream.Write(Bytedata, 0, Bytedata.Length);
            objStream.Flush();
            objStream.Close();

            WebResponse resp = objWebHTTPReq.GetResponse();
            r = new StreamReader(resp.GetResponseStream());

            returnedXml.Append(r.ReadToEnd().Replace("xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"", "").Replace("<?xml version=\"1.0\" encoding=\"utf-8\" ?>", "").ToString());

            _loggingManager.LogProcess(offer, true, "Response", "Response", returnedXml.ToString(), offer.OperatorCode, true);

            return returnedXml.ToString();

        /*}
        catch (Exception ex)
        {
            return null;
            // fixme
            //return this.CreateErrorResponse("Handled exception:\n" + ex.ToString());
        }
        finally
        {
            if (!string.IsNullOrEmpty(outputstring))
                outputstring.Remove(0);
            if (returnedXml != null)
                returnedXml.Remove(0, returnedXml.Length);
            if (r != null)
                r.Dispose();
        }*/
    }         

2 个答案:

答案 0 :(得分:2)

尝试为您的网络服务电话设置.Timeout

yourWebService.Timeout = -1;// never timeout.

您也可以尝试在web.config中设置executionTimeout

<configuration>
  <system.web>
  <httpRuntime maxRequestLength="4000"
    executionTimeout="45"
  </system.web>
</configuration>

答案 1 :(得分:2)

该消息有时颇具误导性。当没有到远程主机的路由时,您可以获得相同的消息。

当您收到错误时,请尝试在同一端口上使用telnet。如果这有效,那么如果你不能telnet那么它似乎是超时,那么这是一个连接问题(没有到主机的路由)