Is there a way to support both DIGEST and BASIC in one servlet container (we use tomcat 6.0.35)? We want to support BASIC over SSL but we need to keep running DIGEST for down-compatibility reasons with api-clients.

As I see in web.xml config, there is only one entry possible for <auth-method>:
===
<login-config>
   <auth-method>DIGEST</auth-method>
   <realm-name>my-realm</realm-name>
 </login-config>

So it looks to me that I need to write some custom hooks/Filters in my webapp (to check DIGEST first + fallback on BASIC). Can somebody point me to the right hooks?

Thanks!


--
 manuel aldana
 mail: ald...@gmx.de | man...@aldana-online.de
 blog: www.aldana-online.de


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to