transportClientEndpointBehavior

transportClientEndpointBehavior

由于VS编辑器不知道该扩展名,因此在创建WCF配置文件时在Visual Studio中可能会出现此错误。我需要知道将transportClientEndpointBehavior放在哪里,有什么帮助吗?谢谢。

 <behaviors>
  <endpointBehaviors>
    <behavior name="sharedSecretClientCredentials">
      <transportClientEndpointBehavior credentialType="SharedSecret">
        <clientCredentials>
          <sharedSecret issuerName="***********" issuerSecret="**********" />
        </clientCredentials>
      </transportClientEndpointBehavior>
      <ServiceRegistrySettings discoveryMode="Public"/>
    </behavior>
  </endpointBehaviors>
  ...
</behaviors>


我的basicHttpRelayBinding也有问题,我想将其包含在绑定中。

最佳答案

Windows Azure平台培训工具包中有一个示例以编程方式执行此操作。这是示例片段...

08-04 09:42