On 7 oct, 16:46, Henrique Viecili <
viec...@gmail.com> wrote:
> Hi fellows...
> I am faced with this difficult situation:
>
> I have a GWT application built in the RPC style for async calls (1
> Async interface, 1 RemoteService interface and 1 RemoteServiceServlet
> implementation) and now there is a requirement of sending some request
> parameters to each async call and I would like to perform this in a
> way the developer does not need to know about it (i.e. pass an object
> in every async call).
>
> I know if I were using RequestBuilder this would be a piece of cake,
> but I am not and it would require a *considerable* effort to change
> it.
>
> I was wondering if it's possible to extend the GWT.create to add a
> custom implementation that carries the parameters from the browser URL
> to all servlet calls... do you have any idea?