Hi Guys, I have a GWT application which I used for Installation of multiple servers using PERL scripts. These installation scripts can take as long as 2-3 hours to execute, because of this the client requests times out, after around 1 hour, with the following response in the onFailure() method:
com.google.gwt.user.client.rpc.StatusCodeException: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/ html4/loose.dtd"> <HTML><HEAD><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"> <TITLE>ERROR: The requested URL could not be retrieved</TITLE> <STYLE type="text/css"><!--BODY{background-color:#ffffff;font- family:verdana,sans-serif}PRE{font-family:sans-serif}--></STYLE> </HEAD><BODY><H1>ERROR</H1><H2>The requested URL could not be retrieved</H2> <HR noshade size="1px"><P>While trying to retrieve the URL: <A HREF="[no URL]">[no URL]</A><P>The following error was encountered:<UL><LI> <STRONG>Read Timeout</STRONG></UL><P>The system returned: <PRE><I> [No Error]</I></PRE><P> A Timeout occurred while waiting to read data from the network. The network or server may be down or congested. Please retry your request. <P>Your cache administrator is <A HREF="mailto:webmaster">webmaster</ A>. <BR clear="all"><HR noshade size="1px"><ADDRESS> Generated Tue, 12 Jul 2011 07:12:18 GMT by tklcnis (squid/ 2.5.STABLE9)</ADDRESS> </BODY></HTML> Although the code at my server end keeps on running even after the timeouts and the installations are completed successfully, but when I return the data from server function saying "installation completed", the request is already outdated/stale and nothing happens as it has already declared request as failed. How can I increase the RPC timeout to infinite, so that it never timesout. Using Tomcat 6.0 and GWT: 1.7 Please Help -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.