WebClient timeout

  • Thread starter Thread starter Crirus
  • Start date Start date
C

Crirus

How can I change a WebClient timeout in order to allow more time to a server
to respond
 
In your web.config file for that project, there should be a block that
looks like this:

<!-- SESSION STATE SETTINGS
By default ASP.NET uses cookies to identify which requests belong
to a particular session.
If cookies are not available, a session can be tracked by adding
a session identifier to the URL.
To disable cookies, set sessionState cookieless="true".
-->
<sessionState
mode="InProc"
stateConnectionString="tcpip=127.0.0.1:42424"
sqlConnectionString="data
source=127.0.0.1;Trusted_Connection=yes"
cookieless="false"
timeout="20"
/>

If you increase the timeout value, that should do what you want, i think.

Josh Moody
VSU Team

--

This posting is provided "AS IS" with no warranties, and confers no rights.
Use of included script samples are subject to the terms specified at
http://www.microsoft.com/info/cpyright.htm

Note: For the benefit of the community-at-large, all responses to this
message are best directed to the newsgroup/thread from which they
originated.
--------------------
 
No, I'm talking about a WebClient used in VB application to connect to a
server
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

IP address no good for WebClient Url? 5
Webclient Timeout? 1
Cookies with webclient 1
webclient using proxy? 3
webclient timeout 1
Download file with maximum timeout 3
WebClient 2
Download from web 5

Back
Top