[appengine-java] Re: wildcard *srt support?

2010-02-21 Thread vbart
And what do you exactly need ? If you need to enable GWT RPC mechanism to work with your DTO classes, then you just have to put the following lines into your appengine- web.xml: Vaclav On Feb 21, 7:59 am, Prashant Gupta wrote: > *.gwtrpc  doesn't seem to match any url. Is it > not s

Re: [appengine-java] Re: wildcard *srt support?

2010-02-21 Thread Prashant Gupta
I want to pass all gwt modules' rpc request through a single servlet. So, that I need not to modify web.xml every time add or remove a GWT module. OR you can say there is only one common Impl servlet for all gwt services/modules, and I want to have only one entry in web.xml which will for all avai

Re: [appengine-java] Re: wildcard *srt support?

2010-02-21 Thread John Patterson
If you use the command pattern as explained in Ray Ryans talk then you have only one Servlet to map for all commands. http://code.google.com/events/io/2009/sessions/GoogleWebToolkitBestPractices.html We use an implementation that also takes care of retrying failures and ignoring out-of-seque