Hello
In my web.xml file I'm using the following configuration to enable
HTTP authentication for my app:
<security-constraint>
<web-resource-collection>
<web-resource-name>Demo Application</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>sol</role-name>
</auth-constraint>
</security-constraint>
<login-config>
<auth-method>BASIC</auth-method>
<realm-name>Demo authentication</realm-name>
</login-config>
For web mode I have configured a suitable realm in my tomcat server
and got HTTP authentication working.
Now I would like to use HTTP authentication also in hosted mode using
the embedded Jetty server (for debugging).
Can anybody tell me how to proceed or help me to locate the
configuration files for the embedded Jetty server?
Thanks and regards,
Roman
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---