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-tp14670111p14670111.html
Sent from the qooxdoo-devel mailing list archive at Nabble.com.


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to