Re: how to test GWT app through a proxy

2012-03-27 Thread John Malpas
Thanks Jens for your pointers. Here are a few developments. On Tuesday, March 13, 2012 5:25:47 PM UTC-7, Jens wrote: > > > The exception you see is thrown in RemoteServiceProxy.doInvoke(...) and > simply wraps a possible RequestException. These RequestExceptions can be > thrown by RequestBuilder

Re: how to test GWT app through a proxy

2012-03-13 Thread Jens
MyDataService_Proxy is generated by GWT and you can see the generated files by adding "-gen " to your app's Eclipse run configuration. The exception you see is thrown in RemoteServiceProxy.doInvoke(...) and simply wraps a possible RequestException. These RequestExceptions can be thrown by Reque

Re: how to test GWT app through a proxy

2012-03-13 Thread John Malpas
The problem is getting worse, Now several users have sent me similar errors, all on the new version of an app that has been running (I thought reliably) for 1 1/2 years. The error is like Class$yE: Unable to initiate the asynchronous service invocation (MyDataService_Proxy.readRecords) -- check t

Re: how to test GWT app through a proxy

2012-02-27 Thread JoseM
I don't think it's directly related to the proxy pattern that Dan mentioned. It seems to be that your user doesn't have great internet access, or there is some issue in the connection between that user and your web server. It seems that the error message happens when the browser is not able t

Re: how to test GWT app through a proxy

2012-02-27 Thread John Malpas
Thanks that is interesting. What I know is, I am writing the "MyDataService" part, and somehow GWT must be writing the "MyDataService_Proxy" part. And then there is this one (thankfully) very vocal user, whose access to the RPC needed by the application goes through the "MyDataService_Proxy" part,

Re: how to test GWT app through a proxy

2012-02-26 Thread Dan
That error message suggests a different kind of proxy, http://en.wikipedia.org/wiki/Proxy_pattern. On Feb 25, 8:40 pm, John Malpas wrote: > I have several GWT (2.4) applications out there. > > One in a while, a user writes in with a problem, > where it is clear the RPC is not working, and it > is

how to test GWT app through a proxy

2012-02-25 Thread John Malpas
I have several GWT (2.4) applications out there. One in a while, a user writes in with a problem, where it is clear the RPC is not working, and it is clear there is some proxy involved in their access to the application. (Most recent: "Unable to initiate the asynchronous service invocation (MyDat