Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Using the bundled CAS server in uPortal you can use the preferred maven overlay approach to integrating the clearPass feature. There is a patch available to accomplish this, below describes the steps to perform the integration after applying the above patch. By default, the clearPass feature is not activated.

Step 1

...

: Editing the cas deployerConfigContext.xml file

  1. Open the deployerConfigContext.file for editing located at ../uportal-portlets-overlay/src/main/webapp/WEB-INF/deployerConfigContext.xml
  2. Uncomment the following piece of code
    Code Block
    langxml
    
                            </list>
                    </property>
           
           <!-- UNCOMMENT THIS SECTION BELOW -->
           <property name="authenticationMetaDataPopulators">
               <list>
                  <bean class="org.jasig.cas3.extensions.clearpass.CacheCredentialsMetaDataPopulator">
                     <constructor-arg index="0" ref="credentialsCache" />
                  </bean>
               </list>
            </property
    
         </bean>
       
       <bean id="userPasswordDao" class="org.jasig.portal.cas.authentication.handler.support.PortalPersonDirUserPasswordDao" 
            p:data-source-ref="dataSource" />
    
    

Step 2:

Step 3:

Info
iconfalse
titleAdditional References

...