C # HTTP request sending timeout Solution

Source: Internet
Author: User

Request. GetResponse (); timeout problem resolution, and HttpWebRequest multithreading performance problems, request timeout errors,

Solution

1. Set the keepAlive of the http request to false // if it is not required to keepalive, set KeepAlive to false:

2. Modify System. Net. ServicePointManager. DefaultConnectionLimit = 50; // The default value is 2, which can be modified as needed.

3. release resources (such as HttpWebReques objects and HttpWebResponse objects)

If (resp! = Null)
{
Resp. Close ();
}
If (req! = Null)
{
Req. Abort ();
}

4. Force garbage collection before creating an HttpWebReques object

System. GC. Collect ();

5. Do not manually set the ContentLength value for Http GET requests.

In the POST method, it is indeed necessary to manually fill in the data and calculate the data size, and then manually assign a value to ContentLength.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.