【转】The underlying connection was closed

转自:

https://support.microsoft.com/en-us/kb/915599

 

SUMMARY

This article describes error messages that you may receive when you use the Microsoft .NET Framework 1.1 Service Pack 1 (SP1) to make HTTP requests or when you call a Web service.

SYMPTOMS

When you try to make an HTTP request in an application that is built on the .NET Framework, you may receive one or more of the following error messages:

Error message 1

The underlying connection was closed: Unable to connect to the remote server.

Error message 2

The underlying connection was closed: An unexpected error occurred on a send.

Error message 3

The underlying connection was closed: An unexpected error occurred on a receive.

Error message 4

The underlying connection was closed: The server committed an HTTP protocol violation.

Error message 5

The underlying connection was closed: Could not establish secure channel for SSL/TLS.

Error message 6

The operation has timed-out

CAUSE

Error message 1

This problem occurs when the .NET Framework cannot establish a connection to the remote server. This problem may occur when one or more of the following conditions are true:

  • A network outage occurs.
  • A proxy server blocks the HTTP request.
  • A Domain Name System (DNS) problem occurs.
  • A network authentication problem occurs.

To resolve this problem, see resolutions A, B, and C.

Error message 2

This problem occurs when the client computer cannot send an HTTP request. The client computer cannot send the HTTP request because the connection has been closed or is unavailable. This problem may occur when the client computer is sending lots of data. To resolve this problem, see resolutions A, D, E, F, and O.

Error message 3

This problem occurs when the server or another network device unexpectedly closes an existing Transmission Control Protocol (TCP) connection. This problem may occur when a time-out value on the server or on the network device is set too low. To resolve this problem, see resolutions A, D, E, F, and O. The problem can also occur if the server resets the connection unexpectedly, such as if an unhandled exception crashes the server process. Analyze the server logs to see if this may be the issue.

Error message 4

This problem occurs when the .NET Framework detects that the server response does not comply with HTTP 1.1 RFC. This problem may occur when the response contains incorrect headers or incorrect header delimiters. To resolve this problem, see resolutions A and G.

For more information about HTTP headers, visit the following World Wide Web Consortium Web site:

http://www.w3.org/Protocols/rfc2616/rfc2616-sec6.html#sec6

Microsoft provides third-party contact information to help you find technical support. This contact information may change without notice. Microsoft does not guarantee the accuracy of this third-party contact information.

Error message 5

This problem may occur when one or more of the following conditions are true:

  • You are using an invalid client certificate or an invalid server certificate.
  • You are experiencing a TCP connection problem.
  • The client computer is sending lots of data.
  • A time-out setting on the server or on another network device is set too low.
  • You are experiencing an HTTPS protocol compatibility problem.

For TCP connection problems, see resolutions A, D, E, F, and O. For client certificate problems and server certificate problems, see resolutions H and I. For HTTPS protocol compatibility problems, see resolution J.

Error message 6

This problem occurs when the client time-out value is reached before one of the following conditions occurs:

  • An HTTP connection is established.
  • An HTTP response is received from the server.
  • The data stream is completely written to or read.

To resolve this problem, see resolutions A, E, K, L, M, and N.

RESOLUTION

Note The following list contains possible resolutions that may apply when one of these problems occurs. Not all these resolutions apply to all these problems. See the problem descriptions in the "Cause" section to determine which resolution applies.

Resolution A

To resolve this problem, make sure that you are using the most recent version of the .NET Framework. For more information, click the following article number to view the article in the Microsoft Knowledge Base:

318785 How to determine which versions of the .NET Framework are installed and whether service packs have been applied

Resolution B

To resolve this problem, make sure that the proxy settings are correct. To do this, use the following techniques:

  • Use the static WebProxy.GetDefaultProxy method. For more information, visit the following Microsoft Web site:

    http://msdn2.microsoft.com/en-us/library/system.net.webproxy.getdefaultproxy(vs.71).aspx

  • Define a <proxy> element in the application configuration files. For more information, visit the following Microsoft Web site:

    http://msdn2.microsoft.com/en-us/library/aa903369(VS.71).aspx

  • Configure the .NET client to use HTTP 1.0 by changing the HttpWebRequest.ProtocolVersion property. For more information, visit the following Microsoft Web site:

    http://msdn2.microsoft.com/en-us/library/system.net.httpwebrequest.protocolversion(vs.71).aspx

    Note By default, the .NET Framework uses HTTP 1.1.
  • If you are using Secure Sockets Layer (SSL), make sure that the proxy is not configured to use any rules that are blocking HTTPS.
  • If you are using autoproxy, click the following article number to view the article in the Microsoft Knowledge Base:

    873199 How to use autoproxy in managed code

Resolution C

To resolve this problem, make sure that the application has permissions to make network calls and to make socket calls. This resolution applies when the application that makes the HttpWebRequest call runs inside a Web application. You may have to grant Read permissions to the ASPNET account so that you can access the following resources:

  • The Microsoft WinSockProxy WS2.0 Provider (Wspwsp.dll) file
  • The

    HKLM\System\CurrentControlSet\Services\DnsCache

    registry key
  • The

    HKLM\System\CurrentControlSet\Services\WinSock2

    registry key

Note To determine whether the ASPNET worker process has the necessary permissions, use the FileMon utility and the RegMon utility. To download the FileMon utility and the RegMon utility, visit the following Sysinternals Web site:

http://technet.microsoft.com/en-us/sysinternals/default.aspx

The third-party products that this article discusses are manufactured by companies that are independent of Microsoft. Microsoft makes no warranty, implied or otherwise, regarding the performance or reliability of these products.

Resolution D

To resolve this problem, disable the keep-alive feature. In the .NET Framework, set the HttpWebRequest.KeepAliveproperty to FALSE. To do this when you call a Web service, follow these steps.

Note The keep-alive feature is required for NTLM authentication.

  1. Create a new class by inheriting from the generated proxy class.
  2. Add a method to the class to override the GetWebRequest method. This change lets you access theHttpWebRequest object. If you are using Microsoft Visual C#, the new method must be similar to the following.
    class MyTestService:TestService.TestService
    {protected override WebRequest GetWebRequest(Uri uri){HttpWebRequest webRequest = (HttpWebRequest) base.GetWebRequest(uri);//Setting KeepAlive to falsewebRequest.KeepAlive = false;return webRequest;}
    }
    If you are using Microsoft Visual Basic .NET, the new method must be similar to the following.
    Class MyTestService Inherits TestService.TestServiceProtected Overrides Function GetWebRequest(ByVal uri As Uri) As System.Net.WebRequestDim webRequest As System.Net.HttpWebRequestwebRequest = CType(MyBase.GetWebRequest(uri), System.Net.HttpWebRequest)'Setting KeepAlive to false webRequest.KeepAlive = FalseGetWebRequest = webRequestEnd Function
    End Class
  3. Create an instance of the new class, and then use the new class to call the Web service method.

Resolution E

To resolve this problem, set the ServicePointManager.MaxServicePointIdleTime property to less than the time-out value of the server keep-alive connection.

Notes

  • When a ServicePoint object has been idle for the time that is specified in the MaxIdleTime property, it is eligible for garbage collection.
  • Make sure that the ServicePointManager.MaxServicePointIdleTime property is set before any HTTP requests are made. For more information about the ServicePointManager.MaxSercvePointIdleTime property, visit the following Microsoft Web site:

    http://msdn2.microsoft.com/en-us/library/system.net.servicepointmanager.maxservicepointidletime(vs.71).aspx

Resolution F

To resolve this problem, increase the time-out value on the server computer and on other network devices. To increase the time-out value in Microsoft Internet Information Services (IIS) 6.0, follow these steps:

  1. Click Start, click Control Panel, click Administrative Tools, and then click Internet Information Services (IIS) Manager.
  2. Click the name of the computer that you want to reconfigure, and then click Web Sites.
  3. Right-click the Web site that you want to reconfigure, and then click Properties.
  4. Type a new value in the Connection timeout box, and then click OK.
  5. On the File menu, click Exit.

Resolution G

To work around this problem, set useUnsafeHeaderParsing to True. For more information about the useUnsafeHeaderParsing property, click the following article number to view the article in the Microsoft Knowledge Base:

888528 A list of the bugs that are fixed in the .NET Framework 1.1 Service Pack 1 but are not described elsewhere in individual Microsoft Knowledge Base articles

Resolution H

To resolve this problem, supply a valid client certificate for the application. For more information about how to use client certificates, click the following article numbers to view the articles in the Microsoft Knowledge Base:

901183 How to call a Web service by using a client certificate for authentication in an ASP.NET Web application

895971 How to send a client certificate by using the HttpWebRequest and HttpWebResponse classes in Microsoft Visual C# .NET

Resolution I

To resolve this problem, supply a valid security certificate for the server. Additionally, you may be able to resolve this problem by installing the root certification authority (CA) certificate or by correcting the common name of the server certificate. For more information about naming the server certificate, click the following article number to view the article in the Microsoft Knowledge Base:

813618 Security alert: The name of the security certificate is invalid or does not match the name of the site

Warning This workaround may make your computer or your network more vulnerable to attack by malicious users or by malicious software such as viruses. We do not recommend this workaround but are providing this information so that you can implement this workaround at your own discretion. Use this workaround at your own risk.

You can also revise the application code to ignore these certificate warnings. To do this, implement your ownICertificatePolicy interface. You can then set the ServicePointManager.CertificatePolicy property to use your certificate policy instance before the Web service method call is made. 

Note The ICertificatePolicy.CheckValidationResult method implements the application certificate validation policy. For more information about the ICertificatePolicy.CheckValidationResult method, visit the following Microsoft Web site:

http://msdn2.microsoft.com/en-us/library/system.net.icertificatepolicy.checkvalidationresult(vs.71).aspx

For more information and a code sample, click the following article number to view the article in the Microsoft Knowledge Base:

823177 PRB: "System.Net.WebException. The underlying connection was closed. Could not establish trust relationship with remote server" error message when you upgrade the .NET Framework

Important We recommend that you not ignore SSL certificate warnings in code because of possible security risks.

Resolution J

To resolve this problem, change the HTTPS protocol from SSL to Transport Level Security (TLS). 

Note If you already use TLS, change the HTTPS protocol to SSL. To change the HTTPS protocol on the client computer, see the "ServicePointManager.SecurityProtocol property" section on the following Microsoft Web site:

http://msdn2.microsoft.com/en-us/library/system.net.servicepointmanager.securityprotocol.aspx

Note For example, to support the SSL3 protocol and the TLS1 protocol, use code that is similar to the following.

ServicePointManager.SecurityProtocol= SecurityProtocolType.Ssl3|SecurityProtocolType.Tls;

For more information about how to change the HTTPS protocol on the server computer, click the following article number to view the article in the Microsoft Knowledge Base:

187498 How to disable PCT 1.0, SSL 2.0, SSL 3.0, or TLS 1.0 in Internet Information Services

Resolution K

To resolve this problem, increase the value of the maxConnection property. To do this, revise the configuration files for the application or add application code. 

Note The default value of the maxConnection property is 2. For Microsoft ASP.NET-connected applications that call Web services, we recommend that you set a value of 12 times the number of processors. To set this value by using application code, use the ServicePointManager.DefaultConnectionLimit property. For more information about theServicePointManager.DefaultConnectionLimit property, visit the following Microsoft Web site:

http://msdn2.microsoft.com/en-us/library/system.net.servicepointmanager.defaultconnectionlimit(vs.71).aspx

To set this value by using the configuration files for the application, add the following code to the configuration file.

<connectionManagement><add address="*" maxconnection="12"/>
</connectionManagement>

For more information about how to use the <connectionManagement> element, visit the following Microsoft Web site:

http://msdn2.microsoft.com/en-us/library/aa903351(VS.71).aspx

Resolution L

To resolve this problem, make sure that the time-out settings on the server and on other network devices are implemented correctly. For more information about how to implement time-out settings, click the following article number to view the article in the Microsoft Knowledge Base:

904262 The request that is sent by the HttpWebRequest class may stop responding when you use the HttpWebRequest class in an ASP.NET application

Resolution M

To resolve this problem, read about ASP.NET performance tuning. For more information about ASP.NET performance tuning, click the following article number to view the article in the Microsoft Knowledge Base:

821268 Contention, poor performance, and deadlocks when you make Web service requests from ASP.NET applications

Resolution N

To resolve this problem, increase the values of the time-out properties in the client application code. To do this, use the following properties:

  • HttpWebRequest.Timeout
  • HttpWebRequest.ReadWriteTimeout

For more information about the HttpWebRequest.Timeout property, visit the following Microsoft Web site:

http://msdn2.microsoft.com/en-us/library/cy9yd268.aspx

For more information about the HttpWebRequest.ReadWriteTimeout property, visit the following Microsoft Web site:

http://msdn2.microsoft.com/en-us/library/b1w9c0s4.aspx

Resolution O

To resolve this problem, make sure that the client computer does not send the HTTP 100-Continue header. Additionally, make sure that the client computer does not expect to receive the HTTP 100-Continue header. 

Note This resolution is effective if the Web server or the proxy server does not support the HTTP 100-Continue header. For more information about how to disable the HTTP 100-Continue header for the client computer, visit the following Microsoft Web site:

http://msdn2.microsoft.com/en-us/library/system.net.servicepointmanager.expect100continue.aspx

REFERENCES

For more information about performance considerations when you make Web service calls from ASP.NET-connected applications, visit the following Microsoft Web site:

http://msdn2.microsoft.com/en-us/library/aa480507.aspx

For more information about performance issues and deadlock issues when you make Web service requests from ASP.NET-connected applications, click the following article number to view the article in the Microsoft Knowledge Base:

821268 Contention, poor performance, and deadlocks when you make Web service requests from ASP.NET applications

For more information about how to improve the performance of ASP.NET-connected applications, visit the following Microsoft Web site:

http://msdn2.microsoft.com/en-us/library/ms998549.aspx

For more information about how to improve the performance of Web services, visit the following Microsoft Web site:

http://msdn2.microsoft.com/en-us/library/ms998562.aspx

For more information about how to build secure ASP.NET-connected applications, visit the following Microsoft Web site:

http://msdn2.microsoft.com/en-us/library/aa302408.aspx

Note The TCP transport protocol is used for HTTP requests. TCP is a reliable, connection-oriented protocol. However, if a TCP connection closes unexpectedly, the application retries the request. For more information about the TCP protocol and about client behavior if the server closes a connection, visit the following World Wide Web Consortium Web site:

http://www.w3.org/Protocols/rfc2616/rfc2616-sec8.html#sec8.2.4

Microsoft provides third-party contact information to help you find technical support. This contact information may change without notice. Microsoft does not guarantee the accuracy of this third-party contact information. For more information about the FileMon utility and the RegMon utility, click the following article number to view the article in the Microsoft Knowledge Base:

198038 Useful tools for package and deployment issues

For more information about Network Monitor, click the following article numbers to view the articles in the Microsoft Knowledge Base:

148942 How to capture network traffic with Network Monitor

812953 How to use Network Monitor to capture network traffic

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/437557.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

jvm详解、GC、堆内存参数调优

一些常见面试题&#xff1a; JVM的位置&#xff08;运行在操作系统上&#xff0c;与硬件没有直接的交互&#xff09; 一、jvm体系结构&#xff08;记住背下来&#xff09; 运行时数据区&#xff1a;有亮色的有灰色的&#xff0c;灰色的就是占得内存非常小&#xff0c;几乎不存…

【转】!Dynamics 365 Online通过OAuth 2 Client Credential授权(Server-to-Server Authentication)后调用Web API

微软动态CRM专家罗勇 &#xff0c;回复332或者20190505可方便获取本文&#xff0c;同时可以在第一间得到我发布的最新博文信息&#xff0c;follow me&#xff01; 本文很多内容来自 John Towgood 撰写的Dynamics 365 Online Authenticate with Client Credentials &#xff0c…

JMM(java内存模型)

这篇文章写得挺好的&#xff1a;https://blog.csdn.net/javazejian/article/details/72772461 在多线程环境下&#xff0c;线程之间的要通信,就不得不提JMM(java内存模型) 在JVM内部使用的java内存模型(JMM)将线程堆栈和堆之间的内存分开 jmm的承诺&#xff1a; 1.原子性 2.可…

【转】Postman 生成接口文档

引言 几个朋友想做一个前后端分离的项目&#xff0c;接口文档的重要性那是不言而喻的。生成接口文档的方法真的太多了&#xff0c;Yapi、Swagger等等。但是想公网上访问接口文档并修改的话&#xff0c;还得购买服务器&#xff0c;部署上去。穷码农&#xff0c;哪有钱购买服务器…

JVM的进阶学习(GC Roots、JVM调优与参数配置、)

1. GC Roots&#xff0c;可达性分析 从GC roots的对象作为起始点&#xff0c;从GC Roots对象开始向下搜索&#xff0c;如果一个对象到GCRoots没有任何引用链相连&#xff0c;则说明对象不可用。即给定一个集合的引用作为根出发&#xff0c;通过引用关系遍历对象图&#xff0c;能…

【转】图解phpstorm常用快捷键

转载自 https://segmentfault.com/a/1190000004225643 查询快捷键 CTRLN 查找类 CTRLSHIFTN 全局搜索文件 ,优先文件名匹配的文件 CTRLSHIFTALTN 查找php类名/变量名 ,js方法名/变量名, css 选择器 CIRLB 找变量的来源&#xff0c;跳到变量申明处 (CTRL 鼠标单击 也可以) CTRL…

HQL写topN、Spark写topN

HQL写topN用窗口函数rank() 、row_number()、dense_rank() 1、rank(),跳跃排序&#xff0c;假如第一第二相同&#xff0c;那么第三个就是3 select * from( select id, cn, score, rank() over(partition by id order by score desc)as ranks from top N ) A where ranks&…

【转】Dynamics 365 CRM 开发架构简介

目录 概览 名词解释连接到Dynamics 365 CRM Web APIOrganization service选择 - Web API vs. Organization service扩展服务端扩展应用端正文 Dynamics 365 CRM提供了多种编程模型&#xff0c;你可以灵活地按需选用最佳模式。 本文是对Dynamics 365 CRM编程模型的综述。 回…

查找算法-(顺序查找、二分查找、插值查找、斐波那契查找)

1&#xff09;顺序查找或叫线性查找 就是顺序遍历匹配 2&#xff09;二分查找 package search;public class BinarySearch {/*** 二分查找数组必须有序*//**** param arr 数组* param left 左边索引* param right 右边索引* param findVal 要查找的值* return 找到就返回&…

数据结构 - 哈希表(用数组+链表实现存储员工信息,添加增删查功能)

package hashtab;import java.util.Scanner;public class HashTabDemo {public static void main(String[] args) {//创建一个hashTabHashTab hashTab new HashTab(7);//写一个简单菜单来测试String key "";Scanner sc new Scanner(System.in);while (true){Syste…

数据结构 - 树(二叉树的 前序、中序、后序 遍历)

二叉树遍历&#xff08;前序中序后序&#xff0c;主要是看父节点的输出顺序&#xff09; package tree;public class BinaryTreeDemo {public static void main(String[] args) {//先需要创建一颗二叉树BinaryTree binaryTree new BinaryTree();//创建需要的节点HeroNode root…

【转】c# 操作webservice(经典入门教程+MSDN必胜)(有自己修改的部分)

Web Service基本概念 Web Service也叫XML Web Service WebService是一种可以接收从Internet或者Intranet上的其它系统中传递过来的请求&#xff0c;轻量级的独立的通讯技术。是:通过SOAP在Web上提供的软件&#xff08;服务&#xff09;&#xff0c;使用WSDL文件进行&#xff0…

数据结构 - 二叉树(前序中序后序查找)

public static int i 1, j 1, k 1;//编写前序查找方法public HeroNode preOrderSearch(int no){System.out.println("前序遍历"(i)"次");if (this.no no){return this;}HeroNode heroNode null;if (this.left ! null){heroNode this.left.preOrderSea…

数据结构 - 二叉树(删除节点)

因为二叉树是单向的&#xff0c;所以要判断当前节点的子节点(左或右)是否是被删除的节点 //递归删除节点//规定&#xff1a;如果是叶子节点就删除节点&#xff0c;如果非叶子节点就删除子树public void delNode(int no){if (this.left !null && this.left.no no){this…

【转】OData – the best way to REST–实例讲解ASP.NET WebAPI OData (V4) Service Client

一、概念介绍 1.1&#xff0c;什么是OData&#xff1f; 还是看OData官网的简单说明&#xff1a; An open protocol to allow the creation and consumption of queryable and interoperable RESTful APIs in a simple and standard way. 这是一个开放的数据查询和服务协议&…

数据结构 - 顺序存储二叉树(前序中序后序遍历)

就是逻辑上是二叉树&#xff0c;物理上是一个数组 需求 package tree;public class ArrayBinaryTreeDemo {public static void main(String[] args) {int arr [] {1, 2, 3, 4, 5, 6, 7};ArrayBinaryTree arrayBinaryTree new ArrayBinaryTree(arr);//arrayBinaryTree.preOrde…

【转】WCF Data Service 使用小结 (一)—— 了解OData协议

最近做了一个小项目&#xff0c;其中用到了 WCF Data Service&#xff0c;之前是叫 ADO.NET Data Service 的。关于WCF Data Service&#xff0c;博客园里的介绍并不多&#xff0c;但它确实是个很好的框架。可以很方便地通HTTP来访问数据库&#xff0c;如果你是做富客户端开发的…

数据结构 - 线索化二叉树(线索化与遍历)

!!(这里我debug很久才理解过来)** 这里8的前驱为null&#xff0c;所以8的leftType1&#xff0c;但是6是没有后继的或者说后继为null但是rightType为0(因为后继是在下一个节点来进行连接的&#xff0c;6没有下一个节点&#xff0c;所以不能实现后继的线索化&#xff0c;所以righ…

【转】WCF Data Service 使用小结(二) —— 使用WCF Data Service 创建OData服务

在 上一章 中&#xff0c;介绍了如何通过 OData 协议来访问 OData 服务提供的资源。下面来介绍如何创建一个 OData 服务。在这篇文章中&#xff0c;主要说明在.NET的环境下&#xff0c;如何使用 WCF Data Service 来创建OData服务。当然&#xff0c;对于 JAVA 或者其它平台&…

算法 - 堆排序(大顶堆、小顶堆)

用的是顺序存储二叉树&#xff0c;也就是数组实现的二叉树&#xff0c;遍历的时候按照的是二叉树的形式 代码实现 package tree;import java.util.Arrays;public class HeapSort {public static void main(String []args){int [] arr {4, 6, 8, 5, 9,-1,-1,2,4,5,6,88};heapS…