InfoSphere Enterprise Records, Version 4.5.1.3+              

Optionally configuring your web.xml file for SSL

This topic describes how to configure your web.xml file for SSL

  1. If you have made custom changes to your existing InfoSphere™ Enterprise Records web.xml file, copy the web.xml file from the deploy location back into the install location (RM_install_path/FileNet/RM/RecordsManager/WEB_INF) before editing for SSL redirect. See your Application Administrator for the deployed location of your InfoSphere Enterprise Records web.xml file.
  2. (WebSphere® Application Server only) Modify the web.xml file in the RM_install_path/FileNet/RM/RecordsManager/WEB_INF directory: Copy the security_constraint section, and paste the new copied section directly after the original, then change the url_pattern element to ContainerLogin.jsp and the transport-guarantee element to CONFIDENTIAL in the newly inserted security_constraint element. Finally, remove the second occurrence of the url-pattern element, for example:
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>action</web-resource-name>
    <description>Define the container secured resource</description>
    <url-pattern>/ContainerLogin.jsp</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <role-name>All Authenticated</role-name>
    </auth-constraint>
    <user-data-constraint>
    <description>User data constraints</description>
    <transport-guarantee>CONFIDENTIAL</transport-guarantee>
    </user-data-constraint>
     </security-constraint>
  3. (WebLogic Server and JBoss Application Server only) Modify the web.xml file in the RM_install_path/FileNet/RM/RecordsManager/WEB_INF directory: In the user-data-constraint element, change the transport-guarantee element to CONFIDENTIAL, for example:
    <user-data-constraint>
    <description>User data constraints</description>
    <transport-guarantee>CONFIDENTIAL</transport-guarantee>
    </user-data-constraint>


Feedback

Last updated: November 2010


© Copyright IBM Corporation 2010.
This information center is powered by Eclipse technology. (http://www.eclipse.org)