如何在没有SSL的情况下配置SOAP标头

时间:2014-10-30 05:46:35

标签: wcf wcf-security soapheader

我需要配置SOAP标头crednetail,它需要在每个wcflcient调用中传递。在这里,我不希望在web.config文件中配置SSL。

当前配置:

<bindings>
  <wsHttpBinding>
    <binding name="RequestUserName" >
      <security mode="Message">
        <message clientCredentialType="UserName"/>
      </security>
    </binding>
  </wsHttpBinding>
</bindings>

这必须使用SSL进行设置,并且需要提供SSL详细信息。

但是,服务器已经配置了IIS,不想在WEB.CONFIG中配置任何细节。

请指导,如何配置不带SSL的SOAP HEADER。

我也可以改变绑定模式。

0 个答案:

没有答案