On Fri, 2007-02-02 at 09:37 +0100, David Rodríguez Fernández wrote:
> Can tomcat read the file login.html? I think this is a permissions problem.
> 

I am using BASIC mode of authentication. It works. 


> -----Mensaje original-----
> De: Deepan [mailto:[EMAIL PROTECTED] 
> Enviado el: viernes, 26 de enero de 2007 8:22
> Para: Tomcat Users List
> Asunto: authentication using active directory
> 
> Hi,
>  I am trying to authenticate using Active directory for one my application
> in tomcat. ( I have only one application deployed in tomcat). 
> 
> I had configured server.xml and web.xml to use /gridsphere/login.html to get
> details from user and authenticate using AD. When i hit the url
> "localhost:8080", i get 404 error, saying "The requested resource
> (/gridsphere/login.html) is not available. " 
> 
> 
> 
> 
> -----------------------------------------------------------
> server.xml 
> 
> <Realm className="org.apache.catalina.realm.JNDIRealm" debug="99"
> 
> connectionURL="ldap://172.168.1.1:389";
> connectionName="[EMAIL PROTECTED]"
> connectionPassword="xxxxxxxx"
> referrals="follow"
> userRoleName="member"
> roleSearch="(member={0})"
> roleSubtree="false"
> userSubtree="true"
> />
> 
> --------------------------------------------------------------
> 
> web.xml
> 
> 
> <security-constraint>
>         <web-resource-collection>
>                 <web-resource-name>YourWebApp</web-resource-name>
>                 <description> accessible by authenticated users of the
> tomcat role</description>
>                 <url-pattern>/*</url-pattern>
>                 <http-method>GET</http-method>
>                 <http-method>POST</http-method>
>                 <http-method>PUT</http-method>
>                 <http-method>DELETE</http-method>
>         </web-resource-collection>
>         <auth-constraint>
>                 <description>These roles are allowed access</description>
>                 <role-name>tomcat</role-name>
>         </auth-constraint>
> </security-constraint>
> 
> <login-config>
>         <auth-method>FORM</auth-method>
>         <realm-name>YourWebApp Protected Area</realm-name>
>         <form-login-config>
> 
> <form-login-page>/gridsphere/index.html</form-login-page>
> 
> <form-error-page>/gridsphere/autherr.html</form-error-page>
>         </form-login-config>
> </login-config>
> 
> <security-role>
>         <description>Only 'tomcat' role is allowed to access this web
> application</description>
>         <role-name>tomcat</role-name>
> </security-role>




---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to