Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0

...

Code Block
        <!--  Release of nPA Attributes to anyone -->
        <AttributeFilterPolicy id="NPAAtributesToAnyone">
            <PolicyRequirementRule xsi:type="basic:ANY" />
            
            <AttributeRule attributeID="FamilyNames">
                <PermitValueRule xsi:type="basic:ANY"/>
            </AttributeRule>
            
        </AttributeFilterPolicy>

Deployment

Backup your IdP configuration before re-deploying the IdP web app

Code Block
 
# change to the war directory
cd $IDP_INSTALL_DIR/war

#create directory WEB-INF/lib
mkdir -p WEB-INF/lib

# copy npa-login-handler.jar into the lib directory
cp $IDP_INSTALL_DIR/lib/npa-login-handler.jar $IDP_INSTALL_DIR/war/WEB-INF/lib

# unzip the web.xml file
unzip -l idp.war WEB-INF/web.xml

# apply changes to the web.xml file as described above

#update the idp.war file to contain the configured nPA Login Handler
zip -u idp.war WEB-INF/web.xml WEB-INF/lib/npa-login-handler.jar

...