Hi, I'm trying to have gadgets call servlets on their server.
If that's relevant, the gadgets are made with GWT, modified to make the calls through the container proxy. I noticed some problems with this proxy : - It doesn't seem to allow POST requests, only GET requests are forwarded. Is that a choice ? I think GWT RPCs use POST request, so those can't reach the server. I had to change the ProxyServlet to event have the call made. - That done, I was able to send requests, but then the (real, nont the proxy) servlet refused the requests because the Content-Length was not set. Is there a way to have the ProxyServlet set Content-Length ? Mickaël
