Tracy12 wrote:
1) As we dont use the apache basic authentication but our CAS authentication. If the authentication is not successful how can we redirect to the CAS login page.
Ah-ha... So CAS authentication is done via a webform of some type, which means that it uses cookies. Am I correct in this?
I'm not positive about this, but I think you probably want a PerlAuthzHandler instead. In this handler you would confirm that the user is logged into the CAS system, set the REMOTE_USER environment variable, and return OK. If the user wasn't logged in, then you'd redirect to the CAS login page.
2) As we dont use the basic authentication in apache in the above httpd.conf entry what the values should we give for AuthType , AuthName in the above Location declaration.
I think, with PerlAuthzHandler you only need to specify a "Requires valid-user" to make it work.
Rob