When user accesses URI the user is not challenged for authentication but the resource is protected in the Entitlements Manager
2 years ago
Originally Published: 2006-04-24
Article Number
000057484
Applies To
IN PROGRESS
Issue
He said that when he accesses /paystub/* resources he is not being challeneged for authentication. From reviewing the logs I could see that requests were not being processed for /paystub/* resources, the agent would go from ct_pre_process to ct_post_process. After reviewing the webagent.conf I could see the resource was not excluded. Later I reviewed the ct-httpd.conf and found that it was only configured for /CDMS/*.
When user accesses URI the user is not challenged for authentication but the resource is protected in the Entitlmeents Manager
Resolution

----------------------------------------------
LoadModule ct_auth_module /u/ctrust/agent/agent-apache2-46/lib/libct_apache2_agent.so
<IfModule ct_apache_mod.c>

  CTAgentRoot /u/ctrust/agent/agent-apache2-46/webservers/java3
  Alias /cleartrust/ "/u/ctrust/agent/agent-apache2-46/htdocs/"
  <Directory "/u/ctrust/agent/agent-apache2-46/htdocs/">
    AuthType Basic
    Require valid-user
    AuthName CT
  </Directory>

  <Location /CDMS>
    AuthType Basic
    Require valid-user
    AuthName CT
  </Location>

</IfModule>
----------------------------------------------

Once Scott modified this configuration from /CDMS to / he was being authentication for CDMS and paystub applications.