Hi,
I have successfully deployed a simple GWT RPC application to Tomcat
server. When I try http://my-public-ipaddress:8080/domain from my
browser it successfully makes RPC . But when I call www.domain.com it
gets 404 error after RPC. Here is my Tomcat server configuration:
<Host name="www.domain.com" appBase="webapps/domain"
unpackWARs="true" autoDeploy="true"
xmlValidation="false" xmlNamespaceAware="false" debug="1" >
<Context path="" docBase="." />
<Alias>domain.com</Alias>
</Host>
What could be the problem? I looked at the packets from wireshark.
While successful RPC browser sends POST with /domain/modulename/
service but during unsuccessful RPC it sends POST with /modulename/
service...
--
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.