2013-10-10 2 views
1

나는 이것을 도와 줄 수 있기를 희망한다. SoapUI를 사용하여 WsHttpBinding을 사용하여 WCF 서비스를 호출하려고합니다. 이 서비스에서는 클라이언트 인증서를 전달해야합니다. Soap UI에서 이것을 어떻게 전달할 수 있습니까? 쉽게 클라이언트를 만들고 서비스를 호출 할 수 있지만 SoapUI에서이 작업을 수행 할 수 있기를 원합니다.WCF SoapUI WsHttpBinding

이 경우 가능하며 예인 경우 안내를 받으시기 바랍니다.

답변

2

몇 가지 사항을 확인하고 싶을 수 있습니다. 또한이 마크를 확인 SOAP UI의 확인)

2

<wsHttpBinding> 
    <binding name="wsHttpSecure"> 
     <security mode="Message"> 
     <message clientCredentialType="UserName" negotiateServiceCredential="false"  
        establishSecurityContext="false" algorithmSuite="Default" /> 
     </security> 
    </binding> 
</wsHttpBinding> 

1) 설정 negotiateServiceCredential = "false"를 "기본 WSA를 추가하려면"

확인이 링크 http://ddkonline.blogspot.com.br/2012/10/wcf-45-host-unreachable-when-calling.html

3) 다음 클라이언트 인증서 확인 링크를 전달하는 경우

http://www.soapui.org/SOAP-and-WSDL/applying-ws-security.html

도움이 되었기를 바랍니다.