Hi,
I moved a new application (my first using GWT) on to our production
Tomcat server and then realized that I wasn't requiring SSL. The way
I normally do that is in the web.xml file under the security-
constraint:
<security-constraint>
<web-resource-collection>
<web-resource-name>some-resource-name</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
Naturally, I made the change on my development system since the war
file that gets copied to the production server includes the web.xml
file. The problem is that in hosted mode on my development system,
instead of the app coming up I get a "403 Forbidden" error. All the
apps I write require SSL and I don't want to have to remember to
modify the web.xml file each time a move a GWT app into production. I
can't imagine that there's not a solution to this, I just don't know
what it is. Can anybody help?
Thanks,
Rob
--
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.