timeout

Specifying a WCF Service session to persist indefinitely

I'm new to WCF, so maybe this is something best done in another way. Right now I have a collection of WCF Services, but I am trying to build in functionality which sends weekly emails. To do this I built another WCF service with the code below: [ServiceBehavior(InstanceContextMode = InstanceContextMode.Single, AutomaticSessionShutdown...

HttpWebRequest Timeout

Hello, my Code: System.Net.HttpWebRequest req = (System.Net.HttpWebRequest)System.Net.WebRequest.Create("http://192.168.2.2/web/movielist"); req.Timeout = 2000; System.Net.WebResponse res = req.GetResponse(); System.IO.Stream responseStream = res.GetResponseStream(); The requested document (movielist) is a very big document and it req...

WCF timeout client vs server

Hi ! Can anyone explain to me what is the difference between the timeout configuration on the server vesus on the client ? For example, what would happen if a client sets the sendTimeout to 5 minutes while the configuration on the server has it set for 1 minute ? Does the client prevail since it initiates the communication ? Thanks for...

how can I sync JS timeout and ASP.NET session timeout?

Ok. I can't really solve what I want - so if you can please advise me on how to: I have a page of each every click has ajax call to my server (hence, the ASP extends the session) I have ASP.NET session set to Xmin. I want when X+1 min expires, I have expiration page. what I did was to set the JS timer to validate every x+1min to see if...

Sql Alchemy connecion time Out

I am using sqlalchemy with Mysql, and executing query with sql expression . when executing a number of query then it time out. I found an answer but it is not clear to me -- Answer link . plz any one can help me? TimeoutError: QueuePool limit of size 5 overflow 10 reached, connection timed out, timeout 30 ...

fsockopen unlimited timeout

Hello, there is a way to make a fsockopen with unlimited timeout ? Like CURLOPT_TIMEOUT=0 ? ...

Setting up a 'Timeout' feature in windows forms app

Hi Dows anyone know how I can build a timeout feature into a windows forms app. The app is event driven, but I am thinking of somehow using a timer which counts down for say 10minutes, and one the timer ticks then we time out the user. The problem I have is how can I reset the timer each time the mouse is moved or clicked. Any help a...

What delegate method is called when an ASI-HTTP-Request times out?

I have an app that uses ASI-HTTP-Request for large files, and I had a tester recently note that they wer observing very long loading delays that should be manifesting as timeouts. I have delegate methods wired up for request failures, but these didn't seem to be happening. I poured through their documentation but didn't see anything spe...

How to set a timeout on a soap call using ksoap2-android?

Hey hey I'm using ksoap2 for my android project and it works great. I've succeeded in connecting to distant server but I currently have a problem when I want to set a timeout to my androidhttptransport. Is there a clean way (maybe an attribute to set?) to deal with it? I've found this same question there but it's not very detailed. Do...

How does ADO.NET' s SqlCommand.CommandTimeout work?

Consider a stored procedure that updates some rows about in 60 seconds without using a transaction. We set ADO.NET's SqlCommand.Timeout to 30 seconds. SqlCommand.Timeout = 30; When that timeout occurs at 30 seconds, will the stored procedure continue to run in database server or not? How does the server communicate this to the client...

suPHP / PHP scrip timeout

After my host enabled suPHP, a previously working script has been timing out after ~3min (it varies, but the script has not run for more then 3, AFAIK). The odd part is, the script is not throwing any errors that I can see (and yes, full PHP error reporting/logging is enabled and all MYSQL queries have been checked for errors, also) it s...

JQuery AJAX timeout undefined

I was trying out example JQuery examples and to my surprise, I got an error state for an AJAX call mentioning that timeout isn't defined. When I removed timeout attribute, it worked fine. I downloaded JQuery few days back, so I am pretty sure it's not a version problem. I was trying with Firefox(3.6.8) and not any other browser. Why ...

Suggestion for this kind of execution in asp.net

I have a web application that sends a single sms to multiple numbers via gsm.Every user has this application in his local system. I am able to send messages one by one. Thus far i have only 10 numbers so there is no problem. Consider i have a file having 10000 mobile numbers, what will happen to my execution time? What is your suggesti...

How can I make sure NSOperations execute in a failsafe way?

What I Want I've got an NSOperationQueue in my application and it's critical that all operations get processed before the application quits. I've got the following code on quit to make sure the NSOperationQueue is empty before quitting: if ([NSThread isMainThread]) { while ([[operationQueue operations] count] > 0) { [[NSRun...

Set a timeout for a specific function / block of code (not the whole script)?

I have php scripts that call perl scripts to do various things and sometimes I get it where it just goes on and on without getting a response back, this is based on the variable that is being passed to the perl script and I am doing a lot of different ones in succession so I can't get really debug it directly since I don't have a respons...

How to stop basepage from recursivly detecting session timeout

Alternate Title: How to redirect on session timeout FINAL SOLUTION: Credit to: Robin Day (Although I tested Ben's solution and it also works and the other two solutions are also both good solutions) I got rid of the basepage that I had originally. Put this in the Session_Start of Global.asax void Session_Start(object sender, EventArg...

Checking if Session has Timed Out

This is my base class for all pages except EndSession.aspx override protected void OnInit(EventArgs e) { base.OnInit(e); if (Context.Session != null) { //check the IsNewSession value, this will tell us if the session has been reset. //IsNewSession will also let us know if the users session has timed ou...

Perl, make script timeout after x number of seconds?

I have been searching on this but it is surprisingly hard to come by a straight answer to this (as php has a lot more info on this topic it seems).. I need to make my perl script die after a specified number of seconds because, as it is now, they are running too long and clogging up my system, how can I make it so the entire script just ...

clearTimeout on Mouseover Event not clearing setTimeout from Mouseout Event

I have some code that adds mouseover events and mouseout events to all 'a' tags on a page. I'd like it so that the mouseout starts a 5 second timer after which time it calls a function. However, if a new mouseover event fires, it should cancel any existing timers. The code I'm using follows. The setTimeout() is working fine, but it se...

Apache 2.2 CGI perl timeouts, still times out even with periodic prints.

I have a cgi code that is being called by AJAX from clientside javascript. However, the result of the call is discarded by the client. On the backend this code occurs: $|=1; my $i = 0; while (<$fh_echo>) { #To prevent apache timing out the cgi script. print "." if $i % 100 == 0; #Do stuff $i++; } Despite the period...