Hello,

I'm wondering what GWT's default behavior is if I initiate an RPC call
(using code like the
following):

protected IMyServiceAsync myService = (IMyServiceAsync) GWT.create
(IMyService.class);
ServiceDefTarget endpoint = (ServiceDefTarget) eventService;
endpoint.setServiceEntryPoint(GWT.getModuleBaseURL() + "../exporter/
MyService.rpc");
myService.getDetails(callback);

and the server is down?  In most cases I'm finding that a
com.google.gwt.user.client.rpc.StatusCodeException
is thrown with status code 12029, which is appropriate and what I'd
like to have happen all the time.

However, in a few cases, these calls seem to be getting queued and
then get passed to
the server once the server is back up.

What could account for this different behavior in different
situations?  I presume there must be
some setting somewhere to adjust this but I haven't been able to find
it.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to