Hi all, I have a question to ---------------------------------------------- http://code.google.com/docreader/#p=google-web-toolkit-doc-1-5&s=google-web-toolkit-doc-1-5&t=GettingStartedRPC ---------------------------------------------- I cannot deploy my application to Tomcat.
There is on this page a reference on: --------------------------------------------- http://code.google.com/docreader/#p=google-web-toolkit-doc-1-5&s=google-web-toolkit-doc-1-5&t=DevGuideRPCDeployment --------------------------------------------- but there another case is described. Namely the case where a servlet can be called with http://host:port/Foo/Foo.html by user. But in StockWatcher application a servlet will be called by the client application and not by user. If I try to start my application I get 405 Errror. How should I configure it? This is a part of my "web.xml": ------------------------------------------------------------------------------------------------------------------------------------------------------------ <servlet> <servlet-name>StockPriceService</servlet-name> <servlet- class>com.google.gwt.sample.stockwatcher.server.StockPriceServiceImpl</ servlet-class> </servlet> <!-- Standard Action Servlet Mapping --> <servlet-mapping> <servlet-name>StockPriceService</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> ------------------------------------------------------------------------------------------------------------------------------------------------------------ There are content of "www/<package>.<modulename>", WEB-INF\classes\com \..\<name>.class, WEB-INF\lib\gwt-servlet.jar and "web.xml" in my "production" directory. The error will be thrown if I run both "http://localhost:8080/ production" and "http://localhost:8080/produktion/ com.google.gwt.sample.stockwatcher.StockWatcher/StockWatcher.html" I thought I should run StackWatcher and it calls the Servlet. But how can I do it? Thanks beforehand, regards, sipungora --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/Google-Web-Toolkit?hl=en -~----------~----~----~----~------~----~------~--~---
