Holger,
just as a quick check: try increasing the timeout value to some large
value, like 20000ms or even higher, and see if your calls get through.
If you got your calls working in principle you then might want to dig
deeper into the performance issue.
=Thomas
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
>
-------------------------------------------------------------------------
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