Hi to everyone :D
I want to deploy my gwt project in Tomcat...I've read the tutorial at:

http://code.google.com/intl/it-IT/docreader/#p=google-web-toolkit-doc-1-5&s=google-web-toolkit-doc-1-5&t=DevGuideRPCDeployment

but Tomcat don't requests the servlets :(

my project has this structure:

com.gwt.syncar.client
com.gwt.syncar.server

and the file web.xml that I've created is :

<?xml version="1.0" encoding="UTF-8"?>

<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee";
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd";>

 <!-- Standard Action Servlet Configuration -->
 <servlet>
   <servlet-name>LoginService</servlet-name>
   <servlet-class>com.gwt.syncar.Syncar.server.LoginServiceImpl</
servlet-class>
 </servlet>

  <servlet>
    <servlet-name>ItinerarioService</servlet-name>
   <servlet-class>com.gwt.syncar.Syncar.server.ItinerarioServiceImpl</
servlet-class>
 </servlet>

 <!-- Standard Action Servlet Mapping -->
 <servlet-mapping>
   <servlet-name>LoginService</servlet-name>
   <url-pattern>/com.gwt.syncar.Syncar/LoginService</url-pattern>
 </servlet-mapping>

  <servlet-mapping>
   <servlet-name>ItinerarioService</servlet-name>
   <url-pattern>/com.gwt.syncar.Syncar/ItinerarioService</url-pattern>
 </servlet-mapping>

</web-app>


I think that my problem is in this file...
any help is apprecious
many thanks to all the group
byez :)
--~--~---------~--~----~------------~-------~--~----~
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