Re: redirect problem

2008-10-03 Thread falafala
servlet or specify the layer in between GWT Servlet and client somehow. What does the code look like and what does the web.xml look like here? On Oct 2, 1:25 am, falafala [EMAIL PROTECTED] wrote: The gwt client cannot interpret the redirect or invalid response (hence invocation exception

Re: how to proxy all the methods in my RemoteServiceServlet

2008-10-03 Thread falafala
If go for non-spring solution, yes, you should override the processCall(). Just take a look at the source, you should invoke the RPC.encodeResponseForFailure(method, ex) to encode the Exception and send back to client. I didnt test. It may not compile, you may try anyway ... :) public String

Re: redirect problem

2008-10-02 Thread falafala
The gwt client cannot interpret the redirect or invalid response (hence invocation exception). I do it this way... I use GWT server library so I can implement the service as POJO in Spring container and published as gwt service. I cannot use servlet filter bcoz it cannot handle the marshaling