I am experimenting by copying all the files under <Tomcat_home>/
webapps/ROOT/.
the web.xml under ROOT/WEB-INF is
<?xml version="1.0" encoding="UTF-8"?>
<web-app>
<filter>
<filter-name>HibernateSessionRequestFilter</filter-name>
<filter-class>com.jcalc.webcore.HibernateSessionRequestFilter</
filter-class>
</filter>
<servlet>
<servlet-name>shell</servlet-name>
<servlet-class>com.google.gwt.dev.shell.GWTShellServlet</servlet-
class>
</servlet>
<filter-mapping>
<filter-name>HibernateSessionRequestFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<servlet-mapping>
<servlet-name>shell</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
</web-app>
I am getting
Jun 5, 2009 2:44:10 PM org.apache.catalina.core.ApplicationContext log
SEVERE: Error loading WebappClassLoader
delegate: false
repositories:
/WEB-INF/classes/
----------> Parent Classloader:
org.apache.catalina.loader.standardclassloa...@54172f
com.google.gwt.dev.shell.GWTShellServlet
java.lang.ClassNotFoundException:
com.google.gwt.dev.shell.GWTShellServlet
but the gwt-dev-windows.jar is right there under
/ROOT/WEB-INF/lib
why wouldn't tomcat find it?
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---