관리 메뉴

IT.FARMER

weblogic session descriptor 본문

Web Server, WAS/Weblogic

weblogic session descriptor

아이티.파머 2010. 11. 11. 13:23
반응형
<?xml version="1.0" encoding="UTF-8"?>
<wls:weblogic-web-app xmlns:wls="http://www.bea.com/ns/weblogic/90" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.bea.com/ns/weblogic/90 http://www.bea.com/ns/weblogic/920/weblogic-web-app.xsd http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <wls:weblogic-version>10.0</wls:weblogic-version>
    <wls:context-root>/</wls:context-root>
    <!-- 
     Application 에서 동일한 session id 를 사용한다면 충돌이 발생하여 장애사항을 유발 할 수 있기 때문에 다음과 같이 설정
     weblogic.xml 과  cookiName 은 동일하게 설정 해줘야 한다.
    <wls:session-descriptor>
<wls:cookie-name>ECMS?LAW?_SSESSIONID</wls:cookie-name> 
    </wls:session-descriptor>-->
</wls:weblogic-web-app>

반응형