我正在尝试从Azure BizTalk服务调用现有网桥,但收到以下错误:
无法与具有权限'域名'的SSL / TLS安全通道建立信任关系。
我已经尝试了所有可能的WCF绑定配置但没有一个可以工作,最后的配置如下:
<system.serviceModel>
<bindings>
<wsHttpBinding>
<binding name="ServiceBinding">
<security mode="Transport" />
</binding>
</wsHttpBinding>
</bindings>
<behaviors>
<endpointBehaviors>
<behavior name="ServiceCredentialBehavior">
<clientCredentials>
<clientCertificate findValue="CN=certificate-name"/>
</clientCredentials>
</behavior>
</endpointBehaviors>
</behaviors>
<client>
<clear />
<endpoint address="https://bridge-url" binding="wsHttpBinding" contract="System.ServiceModel.Routing.ISimplexDatagramRouter" name="OneWayExternalServiceEndpointReference2" bindingConfiguration="ServiceBinding" behaviorConfiguration="ServiceCredentialBehavior">
<identity>
<certificate encodedValue="encoded-value" />
</identity>
</endpoint>
</client>
</system.serviceModel>
请您告诉我,如果我遗漏了一些非常明显的事情,我们将不胜感激。
答案 0 :(得分:0)
您的证书是否已签名?如果是,那么你必须:
如果您的证书不是自签名的,那么我认为您必须将证书添加到您当地的根证书颁发机构