you need to create one: if you use GWT Eclipse file, it creates one for you.
here is GWT tutorial on a sample app : http://code.google.com/webtoolkit/doc/latest/tutorial/RPC.html <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd"> <web-app> <!-- Default page to serve --> <welcome-file-list> <welcome-file>StockWatcher.html</welcome-file> </welcome-file-list> <!-- Servlets --> <servlet> <servlet-name>stockPriceServiceImpl</servlet-name> <servlet- class>com.google.gwt.sample.stockwatcher.server.StockPriceServiceImpl</ servlet-class> </servlet> <servlet-mapping> <servlet-name>stockPriceServiceImpl</servlet-name> <url-pattern>/stockwatcher/stockPrices</url-pattern> </servlet-mapping> </web-app> -- 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.
