English 中文(简体)
Icefaces: Network Connection Timeouts in IE only
原标题:

My application has a long running request that takes over a minute. If I m using Chrome or Firefox I just need to be patient. If I use IE however, at the one minute mark I get the popup that says I ve reached a Network Connection Timeout.

Why is that?

最佳回答

The default Internet Explorer time out is 1 minute. Since your process is a long-running one, IceFaces doesn t send the response and it times out.

You can avoid this by spawning a new thread for your long running process and returning the response immediately. IceFaces has plenty of polling or push options available to you to let your client know when the long-running process is done.

问题回答

暂无回答




相关问题
Java RMI - Client Timeout

I m building a Distributed System using Java RMI and it must support a server loss. If my client is connected to a Server using RMI, if this server goes down (cable problems for example), my client ...

PHP Max Execution Time: Incorrect Reporting?

Is there any reason for a PHP script to return a fatal error of: Fatal error: Maximum execution time of 60 seconds exceeded in H:xampplitehtdocsmlm era.php on line 1 When my PHP ini is set to "...

SQL-Server infinite loop

how does sql-server handle infinite loops? Does it detect it or kill the server. EG: WHILE (@number = 3) BEGIN print @number END

Detecting early failure in php fwrite

Earlier today I noticed some calls to php fwrite failing as the destination socket was in a mixed state. There were numerous connections stuck in SYN_SENT and were seemingly not coming back as ...

Multiprocessing Pool inside Process time out

When ever I use the following code the pool result always returns a timeout, is there something logically incorrect I am doing? from multiprocessing import Pool, Process, cpu_count def add(num): ...

Run a program from PowerShell with timeout

I ll write a script that runs a program and wait for it finished. But if the program is not finished within a specified time I want that the program is killed.

open webim ( Mibew Messenger ) time out, reconnecting

i hope you guys know about webim a.k.a mibew messenger. I know only java, jsp and no idea about php except for some basics. Anyways, i ran this app in my apache2.2 local server. Everything works ...

热门标签