Hi All. I have in project 2 custom module. home and game. project structure : com.game com.game.user com.game.user.UserService.java com.home com.home.Home.java com.Game.gwt.xml com.Home.gwt.xml
when I wont use interface UserService in home module, console write error :"... did you forget to inherit a required module?" in Home.gwt.xml is : <?xml version="1.0" encoding="UTF-8"?> <module rename-to='home'> <inherits name='com.google.gwt.user.User'/> <inherits name='com.google.gwt.user.theme.standard.Standard'/> <entry-point class='com.home.Home'/> <source path='home'/> <source path="game.user"/> <servlet path="/user" class="com.server.UserServiceImpl"/> </module> when Im try made from com.game.user new module. with xml : <?xml version="1.0" encoding="UTF-8"?> <module > <source path="user"/> </module> then wos working. but Im can`t compile project. thank you for your suggestion. -- 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.
