是否可以配置WCF服务(使用net.tcp绑定),以便在http绑定的情况下显示帮助页面?
答案 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