Hi.
I have project two modules :
com.game
com.home
I have in com.home.Home.java callings like this
package com.home;
import com.game.user.UserService;
import com.game.user.UserServiceAsync;
.....
UserServiceAsync userService = GWT.create(UserService.class);
userService.register(nickInput.getValue(), passInput.getValue(), new
AsyncCallback<Integer>()
.....

when I run it, console write this :
[WARN] No file found for: /home/user

in web xml is:
  <!-- Servlets -->
  <servlet>
    <servlet-name>userService</servlet-name>
    <servlet-class>com.server.UserServiceImpl</servlet-class>
  </servlet>
  <servlet-mapping>
    <servlet-name>userService</servlet-name>
    <url-pattern>/game/user</url-pattern>
  </servlet-mapping>
when I using this same in com.game.Game.java , then it`s working. but
in com.home.Home is not work.

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