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].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.


Reply via email to