I have increase the timeout, but with no effects. This Message was posted by
the qx_log:

063978 WARN:  qx.io.remote.RequestQueue[419]: Timeout: transport 1091
063980 WARN:  qx.io.remote.RequestQueue[419]: 50254ms > 50000ms
063981 WARN:  qx.io.remote.Exchange[1091]: Timeout: implementation 1092
063983 DEBUG: qx.io.remote.Request[1086]: TIMEOUT OCCURRED
064478 WARN:  qx.io.remote.RequestQueue[419]: Timeout: transport 1091
064479 WARN:  qx.io.remote.RequestQueue[419]: 50754ms > 50000ms
064480 WARN:  qx.io.remote.Exchange[1091]: Timeout: implementation 1092

Im using a local environment, so i think the connection speed is not the
reason for this error. Another Idea? ;)

Best regards, Holger



servix wrote:
> 
> Dear Mailinglist Users,
> i hope you can help me to solve my problem. I write a multi tier software
> and use for the client the greate qooxdoo framework. To communicate with
> the server i use rpc and a Java backend on a glassfish application server.
> 
> I make a async call to the .qxrpc servlet an get the following message in
> the debug window:
> 
> 022224 WARN:  qx.io.remote.RequestQueue[418]: Timeout: transport 1077
> 022226 WARN:  qx.io.remote.RequestQueue[418]: 10182ms > 10000ms
> 022227 WARN:  qx.io.remote.Exchange[1077]: Timeout: implementation 1078
> 022228 DEBUG: qx.io.remote.Request[1072]: TIMEOUT OCCURRED
> 022724 WARN:  qx.io.remote.RequestQueue[418]: Timeout: transport 1077
> 022726 WARN:  qx.io.remote.RequestQueue[418]: 10682ms > 10000ms
> 022727 WARN:  qx.io.remote.Exchange[1077]: Timeout: implementation 1078
> 
> You see i set the default timeout time up to 10000ms, but with no effect.
> If i debug the server i see that the remote Method is called because it
> stopes on the defined brakepoints. My Java Class looks like this:
> 
> package sv.rpc;
> imports....
> public class ControlCenter implements RemoteService {
>       
>       public boolean updateUser(String[] aData) throws RemoteServiceException 
> {
>               return true;
>       }
> }
> 
> My qooxdoo rpc call is the following:
>                       var rpc = new 
> qx.io.remote.Rpc("http://localhost_8080/.qxrpc";,
> "sv.rpc.ControlCenter");
> 
>                       var rpcHandler = function(result, exc) {
>                               if(exc == null) {
>                                       this.debug("RPC: " + result);
>                               } else {
>                                       this.debug("Exception RPC: " + exc);
>                               }
>                       }
>                       rpc.callAsync(rpcHandler, "updateUser", userData); // 
> userData is a
> Array
> 
> I see no solution an dont know why this error occurs, have you any idea?
> Thanks a lot.
> 
> Best regards, Holger
> 

-- 
View this message in context: 
http://www.nabble.com/RPC-Request-Respone-Timeout-tp14670111p14694902.html
Sent from the qooxdoo-devel mailing list archive at Nabble.com.


-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to