473,804 Members | 2,124 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

HttpWebRequest and maximum http connection

In a windows form I execute a lot of HttpWebRequest. Each request run
in his own thread and every requests have the same target server.
Looking at netstat and in the web server logs it seems to me that only
2 connection are opened even if I have 100 threads.
Do you know how can I modify this limit in my application?
Thanks.

Nov 14 '06 #1
7 10370
Hi,

faser wrote:
In a windows form I execute a lot of HttpWebRequest. Each request run
in his own thread and every requests have the same target server.
Looking at netstat and in the web server logs it seems to me that only
2 connection are opened even if I have 100 threads.
Do you know how can I modify this limit in my application?
Thanks.
The two-connections limits is set by HTTP according to RFC2616. On
Windows clients, you can increase this limit using the following
registry settings:

HKEY_CURRENT_US ER\Software\Mic rosoft\Windows\ CurrentVersion\ Internet
Settings
or to (all users):
HKEY_USERS\.Def ault\Software\M icrosoft\Window s\CurrentVersio n\Internet
Settings
if you are the main or only user on this computer.

In the right hand pane you need to create these 2 DWORD [REG_DWORD]
Values because they are not present by default [don't type the quotes
though :)]:

· "MaxConnections Per1_0Server": defines the number of
simultaneous requests to a single HTTP 1.0 server. Double-click on it
and type any integer value between 8 and 32 (I use 16) in the Decimal
box. Default is 4.

· "MaxConnections PerServer": defines the number of simultaneous
requests to a single HTTP 1.1 server. Double-click on it and type any
integer value between 4 and 24 (I use 8) in the Decimal box. Default is 2.

HTH,
Laurent
--
Laurent Bugnion, GalaSoft
Software engineering: http://www.galasoft-LB.ch
Private/Malaysia: http://mypage.bluewin.ch/lbugnion
Support children in Calcutta: http://www.calcutta-espoir.ch
Nov 14 '06 #2

Laurent Bugnion wrote:
The two-connections limits is set by HTTP according to RFC2616. On
Windows clients, you can increase this limit using the following
registry settings:
Ok, now I understand. Thank you.

Nov 14 '06 #3
Thus wrote Laurent,
Hi,

faser wrote:
>In a windows form I execute a lot of HttpWebRequest. Each request
run
in his own thread and every requests have the same target server.
Looking at netstat and in the web server logs it seems to me that
only
2 connection are opened even if I have 100 threads.
Do you know how can I modify this limit in my application?
Thanks.
The two-connections limits is set by HTTP according to RFC2616. On
Windows clients, you can increase this limit using the following
registry settings:
[...]

You don't have to hack the registry to use more parallel connections: See
ServicePointMan ager.DefaultPer sistentConnecti onLimit and ServicePointMan ager.DefaultCon nectionLimit.

Cheers,
--
Joerg Jooss
ne********@joer gjooss.de
Nov 15 '06 #4
Hi Joerg,

Joerg Jooss wrote:
Thus wrote Laurent,
*music playing in the background..... .*
You don't have to hack the registry to use more parallel connections:
See ServicePointMan ager.DefaultPer sistentConnecti onLimit and
ServicePointMan ager.DefaultCon nectionLimit.

Cheers,
I was not aware of that, having spent most of my .NET time doing ASP.NET
applications, where JavaScript doesn't this kind of ability...

Question: Do you happen to know if that's also possible from within a
XBAP application running in Internet zone? I guess I'll have to test that.

Greetings and thanks,
Laurent
--
Laurent Bugnion, GalaSoft
Software engineering: http://www.galasoft-LB.ch
Private/Malaysia: http://mypage.bluewin.ch/lbugnion
Support children in Calcutta: http://www.calcutta-espoir.ch
Nov 15 '06 #5
Thus wrote Laurent,
Hi Joerg,

Joerg Jooss wrote:
>Thus wrote Laurent,
*music playing in the background..... .*
>You don't have to hack the registry to use more parallel connections:
See ServicePointMan ager.DefaultPer sistentConnecti onLimit and
ServicePointMa nager.DefaultCo nnectionLimit.

Cheers,
I was not aware of that, having spent most of my .NET time doing
ASP.NET applications, where JavaScript doesn't this kind of ability...

Question: Do you happen to know if that's also possible from within a
XBAP application running in Internet zone? I guess I'll have to test
that.
Looking at my CAS configuration the answer is yes, but you should test it
anyway ;-)

Cheers,
--
Joerg Jooss
ne********@joer gjooss.de
Nov 15 '06 #6
Hi Joerg,

Joerg Jooss wrote:
Thus wrote Laurent,
>Question: Do you happen to know if that's also possible from within a
XBAP application running in Internet zone? I guess I'll have to test
that.

Looking at my CAS configuration the answer is yes, but you should test
it anyway ;-)

Cheers,
Unfortunately, looking at the documentation, I think the answer is no...
but once again, I really need to test it. I'll do ASAP and report.

..NET Framework Security:
WebPermission for unrestricted web permissions. Associated Enumeration:
Unrestricted

Greetings,
Laurent
--
Laurent Bugnion, GalaSoft
Software engineering: http://www.galasoft-LB.ch
Private/Malaysia: http://mypage.bluewin.ch/lbugnion
Support children in Calcutta: http://www.calcutta-espoir.ch
Nov 16 '06 #7
Thus wrote Laurent,
Hi Joerg,

Joerg Jooss wrote:
>Thus wrote Laurent,
>>Question: Do you happen to know if that's also possible from within
a XBAP application running in Internet zone? I guess I'll have to
test that.
Looking at my CAS configuration the answer is yes, but you should
test it anyway ;-)

Cheers,
Unfortunately, looking at the documentation, I think the answer is
no... but once again, I really need to test it. I'll do ASAP and
report.
Karsten Januszewski is working on a pretty extensive blog entry that covers
web services and XBAPs. Keep an eye on http://blogs.msdn.com/karstenj/.

Cheers,
--
Joerg Jooss
ne********@joer gjooss.de
Nov 16 '06 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
2017
by: Chris | last post by:
Hi, I need some help here. Is it possible to close an HTTP connection in the middle of a php script? For example: <html>
0
1620
by: Rob Levine | last post by:
(This post also available at http://roblevine.blogspot.com/2004/11/frustrating-http-connection-behaviour.html in a slightly more readable format!) Hi All, I seem to be having a bit of a frustrating time with http connections in ..Net at the moment. Basically I am working on a project in which many subsystems use http to communicate with eachother. Once in a while, my .Net client will fail with a "System.Net.WebException: The underlying...
2
3453
by: Shachar | last post by:
Hi All, I have a .Net (2.0 beta 2) smart client running on windows XP, connected to a .Net (2.0 beta 2) web service running on windows 2003. When I don't asking for request from the server for more than 2 min the http connection is close, I see it on performance monitor, to create the new connection it takes around 2-3 sec.
1
2568
by: Tejpal | last post by:
Hi Guys, I have made a web service to accept applicant information and then generate account number in the web method and gives back Account number to applicant. I want to control the traffic to the web service. Particularly i want to do http connection pooling, menaing i dont want to let user allow more than 5 requests to my web service at a time. If a new request comes in (lets say 6th request), it should wait until existing reqests...
1
10059
by: Simon | last post by:
Is there HTTP connection limit of 2 simultaneous connections in webservices? For example what hapens if you use webservices form ASP.NET web application? Presumably ASP.NET is webservices client to some remote server. Does that mean that the requests would be compete over those 2 connections? Is there a workaround for this? RFC 2068 8.1.4 Practical Considerations Clients that use persistent connections SHOULD limit the number of
3
2477
by: Charles | last post by:
Hello, I'm think about using mod_python for a project but I need to make sure: Does mod_python time out after a minute ? (I hope not). If I leave an HTTP connection open so that the content keeps loading inside the browser window indefinately, and if I close the browser window, the mod_python process is terminated, right? Thanks, -- Charles.
5
3105
by: yinglcs | last post by:
Hi, I am new to python. I read an example here about how to fetch data thru a HTTP connection: http://diveintopython.org/http_web_services/review.html, My question is how can i save the data to a file after reading it from a http connection. Thank you.
2
4679
by: jason.m.ho | last post by:
Hello! I am trying to build an ajax chat system. Currently I have it so that when you chat, you upload your message to the database, and each client is polling that database to see if he/she has any new messages. The problem with this is that I poll at 2 second intervals (since connection is not active), and so its not as responsive as I'd like it to be. My question is, is an active HTTP connection possible? How did Meebo or Gmail...
5
2702
by: campos | last post by:
Hi, I am trying to use Ajax to connect with an HTTP server and do some interactions. The first HTTP request will be longer than others due to the 3-way hand shake. So I'd like to reuse that TCP channel to avoid connect again. I wonder the active time for javascript to keep that HTTP connection alive, so that I could make use of that time to optimize each connection. Thanks in advance.
0
9715
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10352
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10354
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9175
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7642
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5535
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5673
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4313
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3835
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.