Re: some know what happend whit the documentation of connectors

2006-12-23 Thread Rainer Jung
Go to: http://tomcat.apache.org/connectors-doc/ In the menu on the left side, you will find: Webserver HowTo and below that: Netscape/SunOne/Sun The docs have been reorganised to make some pages more visible. Old links/bookmarks are now partially broken. Since you didn't tell us, where you

Basic Auth without modification to web.xml?

2006-12-23 Thread Andreas Schildbach
Hi everyone, Is it possible with Tomcat to hide an application behind a Basic Authentication (or something similar), without modifying the web application itself (also not modifying web.xml)? I am thinking about adding a Valve or something to the context.xml. The content to be protected would

Re: Basic Auth without modification to web.xml?

2006-12-23 Thread Gregor Schneider
Yes, there is something similar: http://tomcat.apache.org/tomcat-5.5-doc/config/valve.html Take a look at RemoteAdressFilter and RemoteHostFilter. They grant access depending on the IP / adress. However, you will have to write your own filter to accomplish what you want. Taking a look ath the

Re: Basic Auth without modification to web.xml?

2006-12-23 Thread Leon Rosenberg
On 12/23/06, Gregor Schneider [EMAIL PROTECTED] wrote: Yes, there is something similar: http://tomcat.apache.org/tomcat-5.5-doc/config/valve.html Take a look at RemoteAdressFilter and RemoteHostFilter. They grant access depending on the IP / adress. However, you will have to write your own

Re: Basic Auth without modification to web.xml?

2006-12-23 Thread Martin Gainty
+1 with regards to implementing users in cookies you may want to look at SSO http://tomcat.apache.org/tomcat-5.5-doc/config/host.html#Single%20Sign%20On HTH M- --- This e-mail message (including attachments, if any) is

Re: Basic Auth without modification to web.xml?

2006-12-23 Thread Andrew Miehs
Hi Andreas, Why not just pack an Apache Httpd out front, and use access rules? Regards, Andrew On 23/12/2006, at 1:22 PM, Andreas Schildbach wrote: Hi everyone, Is it possible with Tomcat to hide an application behind a Basic Authentication (or something similar), without modifying the web