This topic describes how to configure your web.xml file
for SSL
- 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.
- (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>
- (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>