timeout

how do i set a timeout value for python's mechanize?

How do i set a timeout value for python's mechanize? ...

Timeout by attaching a process in visual studio

Hello everyone, I am creating a webpage in Visual Studio 2005, and I attach that project to a process like Firefox or whatever. If I create a breakpoint in the code (for example to a click event), and I am too much time looking at the code, suddenly the process unattach and I cannot continue looking the code. Question: Does anyone know...

Wait as long for 100 miliseconds for data returned from method else throw exeception

How can i have any kind of data returned from a method or property within a time frame, and if any data is returned within that time frame an exception is thrown? Pretty much I have a simple method that will perform a simple task, once performed the method returns a value, and if any value is returned within 100 milliseconds I want that...

Checkout timeout on C3P0 under OSGi

Hi. I'm trying to wrap C3P0 under OSGi, but it throws the following error: An attempt by a client to checkout a Connection has timed out Caused by: com.mchange.v2.resourcepool.TimeoutException: A client timed out while waiting to acquire a resource from com.mchange.v2.resourcepool.BasicResourcePool@5d0e2c9 -- timeout at...

Problem with nsurlconnection timeout.

I've got a wierd problem with NSURLConnection. I've set the connection time out of 20 seconds like this. NSURLRequest *request = [NSURLRequest requestWithURL:url cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:20.0]; NSURLConnection *con= [[NSURLConnection alloc] initWithRequest:request delegate:self]; I'm implementing ...

Auth timeout problems with CakePHP

This is really bugging me. Has been for years. No matter what I do with core.php or php.ini, my logins timeout after about an hour - usually. Some deployments of identical code and configuration timeout after a respectable amount of time. This is what I have at the moment on one site - timed out after about an hour: session.gc_divisor ...

How to timeout a read on Java Socket?

I'm trying to read items from a socket and I notice that if there is nothing on the stream of the socket it will stay at the read and back up my application. I wanted to know if there was a way to set a read timeout or terminate the connection after a certain amount of time of nothing in the socket. ...

What to do if I have a CGI that runs for several minutes before outputting data, and Apache times it out?

I have a CGI script that takes a really long time to execute. Long story short, it needs to process a lot of data, run a bunch of slow commands, and make some slow web queries, during which time it doesn't output anything, and when it's done, it finally prints its results out in JSON format. It takes several minutes to run, which is long...

python subprocess with timeout and large output (>64K)

I want to execute a process, limit the execution-time by some timeout in seconds and grab the output produced by the process. And I want to do this on windows, linux and freebsd. I have tried implementing this in three different ways: cmd - Without timeout and subprocess.PIPE for output capture. BEHAVIOUR: Operates as expected but do...

Upload Timeout Issue Under Apache/Perl

Our site provides a upload form for our members to upload photos which we then store and allow them to share. We use a simple form POST to enable the upload and then process the files with Perl's CGI.pm. Here is our Apache setup: Apache/2.0.63 (Unix) mod_ssl/2.0.63 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 Fro...

Execution Creates "MySQL server has gone away" Error

I am using a PHP script which is meant to execute continuously for a long time (a one-time mapping script) and insert data into a MySQL database. The script works fine, however, eventually (after a minute or two) it gets an error: MySQL server has gone away I have changed the ini settings for both mysql connection timeout, and for the...

Timeout jobs on sun grid engine

Hello, I'm running a lot of jobs with sun grid engine (linux). Some of the jobs take a (very) long time to run, and I don't know ahead which ones. I would like to stop jobs that run for more than, say, 2 hours. Is it possible to run using SGE? Is it possible to do it from the unix shell? Thanks ...

Timeout expired. Problem in Exporting xml to sql server 2008 data table - .net

Hi All, I am exporting xml data to sql server 2008 database. .net code: http://stackoverflow.com/questions/3600091/how-to-pass-xml-from-c-to-a-stored-procedure-in-sql-server-2008 Query to insert: http://stackoverflow.com/questions/3606649/querying-a-xml-in-sql-server-2008 Everthing is working fine if the file size is small. Now the ...

What is the best way to handle this: large download via PHP + slow connection from client = script timeout before file is completely downloaded

My client wanted a way to offer downloads to users, but only after they fill out a registration form (basically name and email). An email is sent to the user with the links for the downloadable content. The links contain a registration hash unique to the package, file, and user, and they actually go to a PHP page that logs each download ...

Oracle client runs into timeout

We are using an Oracle DB with different clients to view/edit the tables. It seems that the clients disconnect after a very short amount of time of inactivity (maybe 5 minutes). DreamCoder and Navicat Lite (our preferred Windows clients) both do not offer any option to solve this problem. When a timeout occurs I have to close the connec...

jQuery $.ajax, error handler doesn't work

Hello I noticed that this simple code doesn't work the way it is supposed to work... function test() { $.ajax( { 'url' : 'test/GameConfiguration.json', 'dataType' : 'json', data : { a : 'aaa' }, cache : false, method : 'get', timeout : 10000, //10 secs of timeo...

Recursion and setTimeout in JavaScript

I have a recursive function in my JavaScript file. It looks something like this: function process(node){ if(someCondition) return someValue; a = process(node.children); b = doSomething(a); return b; } The problem is that I want to display the state of the system to the HTML output on each step of this recursion...

Jquery timeout code not re-running after first time user extends session

I wrote a Jquery function that blacks out the screen after a certain amount of inactivity, creates a pop-up that allows the user to click a button to stay logged in, and logs them out (closing the application window) if they do not respond in time. The environment is ASP.NET (VB). We don't technically use master pages, but we do have a ...

Integrating Jquery timeout code into a classic ASP form in an ASP.NET application

I wrote a Jquery function that blacks out the screen after a certain amount of inactivity, creates a pop-up that allows the user to click a button to stay logged in, and logs them out (closing the application window) if they do not respond in time. The environment is ASP.NET (VB). We don't technically use master pages, but we do have a ...

javascript window closing after 15mins

Now, I have script that works, but only if time interval for closing is small (5mins works), but when I try to set timeout to 15mins, it fails every time. The script I'm using is: function openClose(){ my_window = window.open('http://www.somesite.com', "mywindow","status=1,width=1010,height=740"); //this should execute closepop...