I'm starting a servlet extending google's RemoteServiceServlet in Jetty. It did not work with this error: HTTP method GET is not supported by this URL
I searched this error and found that RemoteServiceServlet does not implement doGet and doPost. I tried this link http://docs.codehaus.org/display/JETTY/GWT. It didn't work either. Any ideas how I can get it to work? Should I send back the html file in the doGet?What should I do in the doPost?
Thank you