custom Form authenticator
- From: "Bill Barker" <wbarker (at) wilshire.com>
- Date: Sat, 14 Oct 2006 12:25:53 -0700
"Pid" <p (at) pidster.com> wrote in message news:45310393.5070400 (at) pidster.com...
> Am thinking about implementing a custom Form authenticator, does anyone
> have any tips or links they can recommend before i get started?
>
> Particularly want to know if I can use it on one webapp, not force all
> on the server to use it too.
>
If you configure it in your context.xml file, then Tomcat will use your
authenticator instead of its own for that context:
<Context docBase="myapp">
<Valve className="com.myfirm.mypackage.MyFormAuthenticator" .... />
....
</Context>
>
> cheers,
>
>
> pid
>
> ---------------------------------------------------------------------
> To start a new topic, e-mail: users (at) tomcat.apache.org
> To unsubscribe, e-mail: users-unsubscribe (at) tomcat.apache.org
> For additional commands, e-mail: users-help (at) tomcat.apache.org
>
>
---------------------------------------------------------------------
To start a new topic, e-mail: users (at) tomcat.apache.org
To unsubscribe, e-mail: users-unsubscribe (at) tomcat.apache.org
For additional commands, e-mail: users-help (at) tomcat.apache.org