2009-09-10 2 views

답변

2

당신은 crendential가 클라이언트 인증서에 의해 제공되는 WCF에게, 서비스의 conf의

<transport clientCredentialType="Certificate" /> 

를 설정해야합니다.

과 messageEncoding = "MTOM"

<wsHttpBinding> 
<binding name="wshttpconfig" messageEncoding="Mtom"> 
      <readerQuotas maxArrayLength="64000" /> 
      <security mode="Transport"> 
      <transport clientCredentialType="Certificate" /> 
      </security> 
</binding> 
</wsHttpBinding> 

설정을 참조하십시오이 링크

Configuring WCF for client certificate authentication

Using Certificate-based Authentication and Protection with Windows Communication Foundation (WCF)

안녕

An easy way to use certificates for WCF security

.

관련 문제