Hi Johann,
>
> <module>
> <inherits name='com.google.gwt.user.User' />
> <source path="to"/> <<<<<<< looks like maybe not fully qualified path
> </module>
>
>
> <module>
> <inherits name='com.google.gwt.user.User' />
> <inherits name="myproject.Ejb" /> <<<<<<< looks like maybe not fully qualified path
> <entry-point class='myproject.Web' />
> </module>
>
If Ejb.gwt.xml lies at,say, com.foo.mycompany.myproject and TO classes
lie at
com.foo.mycompany.ejbproject.to then I think it should be:
<module>
<inherits name='com.google.gwt.user.User' />
<source path="to"/>
</module>
<module>
<inherits name='com.google.gwt.user.User' />
<inherits name="com.foo.mycompany.myproject.Ejb" />
<entry-point class='myproject.Web' />
</module>
>
The rule is that the web gwt.xml must have the inherit tag specify all
packages from source root to ejb.gwt.xml and the ejb.gwt.xml path tag
must have all packages from it's own location to the to package.
regards
gregor