FWIW--this web page:

http://www.xmlwebservices.cc/index_FAQ.htm

Seems to say you can put this setting in app.config:

 Q: Somehow my ASP.NET Web Services cannot process more than two
requests from my client. Is this a known behavior that I am observing?
A: This is no limitation in ASP.NET. It is likely that your client
application (or the client's environment) does not allow more than two
open connections to the same server - this is a recommendation from the
HTTP 1.1 specification.
But your are in luck because you can use a configuration setting in your
application config file which allows you to increase the default value
for the maximum number of connections. Here is an example:
<configuration>
 <system.net>
  <connectionManagement>
   <add name = "www.xmlwebservices.cc" maxconnection = "7" />
   <add name = "*" maxconnection = "2" />
  </connectionManagement>
 </system.net>
</configuration>

-----Original Message-----
From: Unmoderated discussion of advanced .NET topics.
[mailto:[EMAIL PROTECTED] On Behalf Of Allan N.
Sent: Friday, September 23, 2005 10:58 AM
To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM
Subject: Re: [ADVANCED-DOTNET] MSI/Machine.config update


>So that makes your app a web thing, doesn't it?
oh God no, it's a Smart Client and I need to deploy this to ~ 400 users
...

I guess I am stuck with custom installers, thanks

best regards Allan

===================================
This list is hosted by DevelopMentor(r)  http://www.develop.com

View archives and manage your subscription(s) at
http://discuss.develop.com

===================================
This list is hosted by DevelopMentorĀ®  http://www.develop.com

View archives and manage your subscription(s) at http://discuss.develop.com

Reply via email to