IBM Enterprise Records, 버전 5.1 이상              

SSL에 대한 지원 선택적 추가(SSL 경로 재지정을 사용한 CMA)

IBM® Enterprise Records 웹 애플리케이션이 CMA(Container Manager Authentication) 옵션을 사용하여 구성되었고 경로 재지정 옵션을 사용하여 SSL(Secure Socket Layer)을 사용하려면, 애플리케이션 서버에 따라 다른 다음 프로시저를 통해 web.xml 파일을 업데이트하여 IBM Enterprise Records 웹 애플리케이션에서 SSL이 사용 가능하도록 설정합니다. 다음 단계가 전체 SSL 환경에 필요하지는 않습니다.

  1. WebSphere: ier_install_path/RecordsManager/WEB-INF 디렉토리에서 web.xml 파일을 수정하십시오.
    1. web.xml 파일의 백업 사본을 만드십시오. 기본 파일 위치는 다음과 같습니다.
      ier_install_path/RecordsManager/WEB-INF/web.xml
    2. 다음 단계에 표시된 대로 <security_constraint> 절을 복사하고 원본 다음에 바로 새로 복사된 절을 붙여넣으십시오.
    3. 새로 삽입된 <security_constraint> 절을 다음과 같이 변경하십시오(변경내용은 굵은체임). 다음 내용을 변경합니다.
      <security-constraint>
        	<web-resource-collection>
            <web-resource-name>action</web-resource-name>
            <description>Define the container secured resource</description>
            <url-pattern>/</url-pattern>
            <url-pattern>/*</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>NONE</transport-guarantee>
        	</user-data-constraint>
      </security-constraint>
      다음과 같이 변경합니다.
      <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>
      또한 변경으로 인해 다음 행이 제거됩니다.
      <url-pattern>/*</url-pattern>
    4. 변경사항을 web.xml 파일에 저장하십시오.
  2. WebLogic 및 JBoss: <ier_install_path>/RecordsManager/WEB-INF 디렉토리에서 web.xml 파일을 수정하십시오.
    1. web.xml 파일의 백업 사본을 만드십시오. 기본 파일 위치는 다음과 같습니다.
      ier_install_path/RecordsManager/WEB-INF/web.xml
    2. <security_constraint> 절에서 다음의 매개변수를 변경하십시오.
      <user-data-constraint>
          <description>User data constraints</description>
          <transport-guarantee>NONE</transport-guarantee>
      </user-data-constraint>
      다음과 같이 변경합니다.
      <user-data-constraint>
          <description>User data constraints</description>
          <transport-guarantee>CONFIDENTIAL</transport-guarantee>
      </user-data-constraint>
    3. 변경사항을 web.xml 파일에 저장하십시오.


피드백

마지막 업데이트 날짜: 2011년 8월


© Copyright IBM Corp. 2011.
이 Information Center는 Eclipse 기술로 구현됩니다. (http://www.eclipse.org 웹 사이트 참조)