Re: Auto Login Using Form Based Authentication

2003-06-11 Thread Bill Barker
I was using "mod_jk" as a short-hand for the entire server-suite. There is a Domino connector, but I don't believe that there is a binary for it. You can get the source and compile it from http://jakarta.apache.org/builds/jakarta-tomcat-connectors/jk/release/v1.2.4 /src/. Documentation is at htt

Re: Auto Login Using Form Based Authentication

2003-06-11 Thread John Turner
"mod_jk" is "strictly" for Apache, since the "mod" typically means "Apache module". But JK (AJP13) is a protocol. It can be implemented however you like. There are JK connectors for Apache and IIS, for example. John On Wed, 11 Jun 2003 10:53:37 -0400, vtobin <[EMAIL PROTECTED]> wrote: Hi Bi

Re: Auto Login Using Form Based Authentication

2003-06-11 Thread vtobin
Hi Bill and Matt, > There are two problems with this: > 1) Your Filter will not get called, since authentication happens before > Filters (you'd need to use a Valve, but then you are locked into > Tomcat). 2) Unless you are using Tomcat 5.x nightly, Request > attibutes won't be available to the

RE: Auto Login Using Form Based Authentication

2003-06-11 Thread Raible, Matt
> 1) Your Filter will not get called, since authentication happens before > Filters (you'd need to use a Valve, but then you are locked into Tomcat). In my experience, and my current working app, this is not the case. The following code works for me in a filter (mapped to /*) to auto-login a use

Re: Auto Login Using Form Based Authentication

2003-06-10 Thread Bill Barker
--Original Message- > From: Val T. [mailto:[EMAIL PROTECTED] > Sent: Tuesday, June 10, 2003 12:46 PM > To: Tomcat Users List > Subject: Auto Login Using Form Based Authentication > > > Hi, > > I have an atypical situation in that I am trying to auto login users from >

RE: Auto Login Using Form Based Authentication

2003-06-10 Thread Raible, Matt
y, June 10, 2003 12:46 PM To: Tomcat Users List Subject: Auto Login Using Form Based Authentication Hi, I have an atypical situation in that I am trying to auto login users from another system (a Lotus Domino system) when they connect to my JSP application. I am using Tomcat 4.1.18 and have

Auto Login Using Form Based Authentication

2003-06-10 Thread Val T.
Hi, I have an atypical situation in that I am trying to auto login users from another system (a Lotus Domino system) when they connect to my JSP application. I am using Tomcat 4.1.18 and have form based authentication working on it. I would prefer if the users did not have to explicitly login, b