

ClearQuest가 Solaris 운영 체제에 설치된 경우 기본 WebSphere Application Server 셀 디렉토리는
srvNode01Cell입니다. Windows, UNIX 및 Linux 시스템의 기본 디렉토리인 dfltCell 대신
이 값을 사용하십시오. 설명을 위해 이 주제의 단계에서는 사용자가 작업 디렉토리에 복사한 web.xml 파일의 이름을 web-client-cert.xml로 변경했다고 가정합니다.
<security-constraint>
<web-resource-collection>
<web-resource-name>secure</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>ClearQuestUsers</role-name>
</auth-constraint>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
<login-conf>
<auth-method>CLIENT-CERT</auth-method>
</login-conf>
<security-role>
<role-name>ClearQuestUsers</role-name>
</security-role>


wsadmin> $AdminApp update TeamEAR file {-operation update -contents web-client-cert.xml -contenturi cqweb.war/WEB-INF/web.xml}
wsadmin> $AdminConfig save
wsadmin> exit