I'm attempting to deploy my gwt project on tomcat and am getting an
error in the log file.  I've read the other posts regarding deploying
on tomcat and have been unable to fix my problem using them.

The error I'm getting is:

SEVERE: Error loading WebappClassLoader
  delegate: false
  repositories:
----------> Parent Classloader:
org.apache.catalina.loader.standardclassloa...@2ba11b
 agt.fathom.ifathom.server.IFathomServiceImpl
java.lang.ClassNotFoundException:
agt.fathom.ifathom.server.IFathomServiceImpl
        at
org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:
1436)

I compiled my project and copied the contents of the war folder into /
webapps/ifathom giving me a directory structure of:

/webapps/ifathom
  - WEB-INF
         - classes
             - <src code hierarchy >
         - lib (includes gwt-servlet.jar)
         - web.xml
  -  ifathom
          - images / etc
  - ifathom.html
  - ifathom.css


And my web.xml file has the following lines:

        <!-- Servlets -->
        <servlet>
                <servlet-name>iFathomServiceImpl</servlet-name>
                
<servlet-class>agt.fathom.ifathom.server.IFathomServiceImpl</servlet-
class>
        </servlet>

        <servlet-mapping>
                <servlet-name>iFathomServiceImpl</servlet-name>
                <url-pattern>/ifathom/iFathomService</url-pattern>
        </servlet-mapping>

Any help at all would be greatly appreciated!

Thanks,
John

-- 
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.

Reply via email to