Hello.
I have small problem. I can try example of gwt-lacertae.
http://code.google.com/p/lacertae/wiki/Example
It's tool for generate proxy for gwt and php.
I have gwt module: pl.mirek.test and I created packages:
client.rpc.beans
client.rpc.jsonizers
client.rpc.proxies
client.rpc.services
I added file with beans and service and I generated
jsonizers, proxies, and php.
And I add generated file to package.
Everything compile is ok. But when I run my sample I have error:
Failed to load module pl.mirek.test.test
In gwt log I have information:
[ERROR] Unable to find type 'pl.mirek.test.client.test'
[ERROR] Hint: Previous compiler errors may have made this type
unavailable
[ERROR] Hint: Check the inheritance chain from your module;
it may not be inheriting a required module or a module may not be
adding
its source path entries properly
I have question. Package:
client.rpc.beans
client.rpc.jsonizers
client.rpc.proxies
client.rpc.services
is not get module. Maybe isn't correct?
Maybe I must add to test-gwt.xml line with source tag:
<module>
<inherits name="com.google.gwt.user.User"/>
<inherits name="com.google.gwt.http.HTTP"/>
<inherits name="com.google.gwt.json.JSON"/>
<source path="/client/rpc/proxies"/> <--- Maybe this. But this not
work
<source path="/client/rpc/beans"/>
<source path="/client/rpc/jsonizers"/>
<source path="/client/rpc/services"/>
<entry-point class="pl.mirek.test.client.test"/>
</module>
I try many combination source path. For example.
/Testing/src/client/rpc/beans
Testing/src/client/rpc/beans
/src/client/rpc/beans
/client/rpc/beans
beans
Now I don't have idea. Can you help me?