Here are my web.xml:

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

  <!-- Default page to serve -->
  <welcome-file-list>
    <welcome-file>DynaTable.html</welcome-file>
  </welcome-file-list>

  <!-- Servlets -->
  <servlet>
    <servlet-name>calendar</servlet-name>

 
<servlet-class>com.google.gwt.sample.dynatable.server.SchoolCalendarServiceImpl</servlet-class>
  </servlet>
  <servlet-mapping>
    <servlet-name>calendar</servlet-name>
    <url-pattern>/dynatable/calendar</url-pattern>
  </servlet-mapping>

</web-app>



What is missing?

Thanks again

On Sat, Jan 9, 2010 at 2:02 AM, UJ <[email protected]> wrote:

> Hello,
>
> Its not able to look-up the servlet you have deployed. Please check
> the web.xml configuration.
>
> You must have specified the remote relative path in your RemoteService
> interface. e.g. @RemoteServiceRelativePath("security-service")
>
> The web.xml for you application should also contain a servlet mapping
> as below:
>
>  <servlet>
>    <servlet-name>securityServlet</servlet-name>
>    <servlet-class>com.xxxx.server.service.SecurityServiceImpl</
> servlet-class>
>  </servlet>
>  <servlet-mapping>
>    <servlet-name>securityServlet</servlet-name>
>    <url-pattern>/application-name/security-service</url-pattern>
>  </servlet-mapping>
>
> Here, the url-pattern contains 'application-name' you should verify
> the correct application name (relative path) in your JBoss environment
> and web.xml. This should solve your problem.
>
> Regards,
> Upendra Jariya
>
> --
> 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]<google-web-toolkit%[email protected]>
> .
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>
>
>
>


-- 
        Lucas V. F. Ventura
Ciência da Computação - UFRJ
--
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