net.tcp绑定的WCF服务帮助页面

时间:2014-04-30 07:33:00

标签: wcf wcf-binding net.tcp

是否可以配置WCF服务(使用net.tcp绑定),以便在http绑定的情况下显示帮助页面?

1 个答案:

答案 0 :(得分:1)

将mex端点添加到您的服务

<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>

然后将httpGetEnabled添加到服务的元数据

<serviceBehaviors>
  <behavior name="MyServiceBehavior">
   <serviceMetadata httpGetEnabled="true"/>
  </behavior>
</serviceBehaviors>

然后你应该能够用http

浏览mex端点的url

编辑:更改了绑定到mexHttpBinding而不是mexTcpBinding