473,473 Members | 1,816 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Increase default webservice timeout globally

environment : .net framework 1.1, ado.net, visual studio 2003, vb, sqlsever
2000, winforms, webforms

I want to increase the timout of the webservice in the application which is
being used in a huge number of places and this woudl take me forever if i do
it indivisually, is there any way i can increase the timeout globally by
something like specifying in the config file?

thanks
sameer
Apr 5 '07 #1
4 58425
Hi,
You can try increase
time-out value in following three places.
[1]Increase the Timeout property of the Web service proxy.
MyWebServ obj = new MyWebServ();
obj.Timeout = -1; // -1 for forever otherwise in milliseconds
[2] Increase timeout value in http-runtime tag in web-config of ASP.NET
project./app.config if it web consumer application is windows
[3] Increase timeout value in http-runtime tag in web-config of Web Services
project.
--
If my answer helped you,then please do press Yes below.
Thanks and Regards.
Manish Bafna.
MCP and MCTS.

"sameer" wrote:
environment : .net framework 1.1, ado.net, visual studio 2003, vb, sqlsever
2000, winforms, webforms

I want to increase the timout of the webservice in the application which is
being used in a huge number of places and this woudl take me forever if i do
it indivisually, is there any way i can increase the timeout globally by
something like specifying in the config file?

thanks
sameer
Apr 5 '07 #2
can u be a little more specific on #2 and #3. i kind of knew that was
possible but how, give me a code example please.

thanks

"Manish Bafna" wrote:
Hi,
You can try increase
time-out value in following three places.
[1]Increase the Timeout property of the Web service proxy.
MyWebServ obj = new MyWebServ();
obj.Timeout = -1; // -1 for forever otherwise in milliseconds
[2] Increase timeout value in http-runtime tag in web-config of ASP.NET
project./app.config if it web consumer application is windows
[3] Increase timeout value in http-runtime tag in web-config of Web Services
project.
--
If my answer helped you,then please do press Yes below.
Thanks and Regards.
Manish Bafna.
MCP and MCTS.

"sameer" wrote:
environment : .net framework 1.1, ado.net, visual studio 2003, vb, sqlsever
2000, winforms, webforms

I want to increase the timout of the webservice in the application which is
being used in a huge number of places and this woudl take me forever if i do
it indivisually, is there any way i can increase the timeout globally by
something like specifying in the config file?

thanks
sameer
Apr 5 '07 #3
Hi,
Below link shows how to increase execution time out value in web.config.You
can set executionTimeout value in web.config file of web service project.And
also in web.config file of asp.net project if it is web service
consumer(client) or else in app.config file if web service consumer(client)
is windows application.
http://www.powupload.com/System.Web....timed-out.aspx
Hope this helps
--
If my answer helped you,then please do press Yes below.
Thanks and Regards.
Manish Bafna.
MCP and MCTS.

"sameer" wrote:
environment : .net framework 1.1, ado.net, visual studio 2003, vb, sqlsever
2000, winforms, webforms

I want to increase the timout of the webservice in the application which is
being used in a huge number of places and this woudl take me forever if i do
it indivisually, is there any way i can increase the timeout globally by
something like specifying in the config file?

thanks
sameer
Apr 5 '07 #4
Hi,
Also as it is used in huge number of places you need increase
executionTimeout value only in web.config file of web service
project.Otherwise if you try to increase at client side then it will require
huge effort
--
If my answer helped you,then please do press Yes below.
Thanks and Regards.
Manish Bafna.
MCP and MCTS.

"sameer" wrote:
can u be a little more specific on #2 and #3. i kind of knew that was
possible but how, give me a code example please.

thanks

"Manish Bafna" wrote:
Hi,
You can try increase
time-out value in following three places.
[1]Increase the Timeout property of the Web service proxy.
MyWebServ obj = new MyWebServ();
obj.Timeout = -1; // -1 for forever otherwise in milliseconds
[2] Increase timeout value in http-runtime tag in web-config of ASP.NET
project./app.config if it web consumer application is windows
[3] Increase timeout value in http-runtime tag in web-config of Web Services
project.
--
If my answer helped you,then please do press Yes below.
Thanks and Regards.
Manish Bafna.
MCP and MCTS.

"sameer" wrote:
environment : .net framework 1.1, ado.net, visual studio 2003, vb, sqlsever
2000, winforms, webforms
>
I want to increase the timout of the webservice in the application which is
being used in a huge number of places and this woudl take me forever if i do
it indivisually, is there any way i can increase the timeout globally by
something like specifying in the config file?
>
thanks
sameer
Apr 5 '07 #5

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

Similar topics

0
by: Danny Ni | last post by:
Hi, Does anyone knows how to change ASP.Net script time out? I tried the following in web.config: <httpRuntime useFullyQualifiedRedirectUrl="true" executionTimeout="300"/> Does not seem to...
1
by: Vai2000 | last post by:
Hi All, What's the difference between Timeout on the Webservice proxy object and Timeout on the auto generated Proxy // foo.aspx.cs localhost.MyWebSvc svc=new localhost.MyWebSvc();...
0
by: Steve Schaenzer | last post by:
Hello, I have a windows client that makes a WebService call on regular intervals using a timer. This call is very simple and always takes a very short time to reply. However about every one in...
2
by: wcchan | last post by:
Hi, We set debug="false" at web.config of a WebService for performance sake. We found that after set, the web service request will sometimes got a timeout exception. Would anyone tell me how long...
0
by: Jape | last post by:
Framework V1.1 on W/2003 using .Net studio 2003... Webservice runs a lengthy process, sending progress output. The web app dies (SOMETIMES) EXACTLY 105 seconds into the process. I checked all...
2
by: WOW.Boomer | last post by:
I've exposed a Data Access Layer with a web service using C#. When I run the project and click "invoke" the webservice times out in exactly 30 seconds. Where do I go to extend this time? I'd...
0
by: Dmitry Markin | last post by:
I've met one strange occurence with webservices - I use webservice as a server and win32 application as a client, after some time of usage any call to webservice results into a timeout... seems...
0
by: jagdriver | last post by:
When I call a webservice on IIS(on WIN2003 Server with .NET runtime 2.0). I get the Error. System.Net.WebException: The operation has timed out In Event Viewer the Error is: Event code:...
0
by: naveed | last post by:
I have been using a webservices of a compnay in Visual Studio 2003 without any problem. But recently I started to work with webservices in Viusal Studio 2005. I am getting a very strange problem...
0
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,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
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...
1
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...
0
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,...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
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...
1
muto222
php
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.