我正在尝试从HTTPS开始向端点发送SOAP消息。这是SSL的一种方式,所以我不需要证书来发送请求。
使用下面的配置时,我得到以下异常:
Could not establish secure channel for SSL/TLS with authority 'some.domain.com/endpoint'.
我尝试了很多不同的传输设置,有时它会在ClientCredentials中询问用户名或认证,但是嘿 - 我不应该需要它们!我可以通过浏览器窗口访问请求的端点而无需任何身份验证 我在配置中遗漏了什么吗?我现在感到有些困惑。
<bindings>
<basicHttpBinding>
<binding name="PublisherBinding">
<security mode="Transport">
<transport clientCredentialType="None" />
</security>
</binding>
</basicHttpBinding>
</bindings>
<client>
<endpoint address="https://some.domain.com/endpoint"
binding="basicHttpBinding" bindingConfiguration="PublisherBinding"
contract="PublisherContract" name="NotificationsEndpoint"/>
</client>
答案 0 :(得分:0)
不幸的是,wcf测试客户端不支持无效证书。您可以使其像Is it possible to force the WCF test client to accept a self-signed certificate?一样工作,也可以使用wcfstorm。第二种解决方案更好。