Hi,

I'm using GWT 2.4.  How do I define servlet init parameters in my
module (.gwt.xml) file when defining a servlet?  I'm writing one for
testing, but apparently the XML I copied online

  <servlet>
        <servlet-name>SaveServlet</servlet-name>
        <servlet-class>com.myco.clearing.web.SaveXmlServlet</servlet-class>
        <init-param>
                <param-name>cacheServiceLocatorClass</param-name>
                
<param-value>com.myco.clearing.product.test.MockCacheServiceLocator</
param-value>
        </init-param>
  </servlet>
  <servlet-mapping>
        <servlet-name>SaveServlet</servlet-name>
        <url-pattern>/save</url-pattern>
  </servlet-mapping>

isn't valid because I'm getting a lot of errors like "Cannot find
'path' attribute" and what not.  Any guidance is appreciated, - Dave

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to