2012-08-31 3 views

답변

1

도메인의 config/config.xml 파일에서 SIP 참조를 삭제하여 도메인에서 SIP 지원을 사용 중지 할 수 있습니다.

종료 WLS. 변경 사항은 다음 다음 제거하기 전에 백업 config.xml 파일을 확인하십시오 : 끝을 향해

<network-access-point> 
    <name>sip</name> 
    <protocol>sip</protocol> 
    <listen-port>5060</listen-port> 
    <public-port>5060</public-port> 
    <http-enabled-for-this-protocol>false</http-enabled-for-this-protocol> 
    <outbound-enabled>true</outbound-enabled> 
</network-access-point> 
<network-access-point> 
    <name>sips</name> 
    <protocol>sips</protocol> 
    <listen-port>5061</listen-port> 
    <public-port>5061</public-port> 
    <http-enabled-for-this-protocol>false</http-enabled-for-this-protocol> 
    <outbound-enabled>true</outbound-enabled> 
</network-access-point> 

이 제거 :

<custom-resource> 
    <name>sipserver</name> 
    <target>AdminServer</target> 
    <descriptor-file-name>custom/sipserver.xml</descriptor-file-name> 
    <resource-class>com.bea.wcp.sip.management.descriptor.resource.SipServerResource</resource-class> 
    <descriptor-bean-class>com.bea.wcp.sip.management.descriptor.beans.SipServerBean</descriptor-bean-class> 
    </custom-resource> 

당신은 WLS를 시작

는, SIP가 시작되지 않습니다. 이것은 내 WLS 12c 도메인에서 훌륭하게 작동했습니다.

+1

weblogic에 앱을 배포하는 데 문제가있는 경우 SIP 지원없이 처음부터 새 도메인을 만드는 것이 좋습니다. 구성 파일을 편집해도 필자의 경우 배포 문제가 해결되지는 않았지만 SIP 지원이없는 새 도메인을 만들었습니다. –

관련 문제