我对如何在WCF中公开端点感到有点困惑
我有一个tcp端点和一个mex tcp端点。
<service name="MessageReaderService.MessageReaderService">
<endpoint name="NetTcpReaderService"
address="ReaderService"
binding="netTcpBinding" bindingConfiguration=""
contract="Contracts.IMessageReaderService" />
<endpoint name="netTcpMex"
address="mex"
binding="mexTcpBinding" bindingConfiguration=""
contract="IMetadataExchange" />
<host>
<baseAddresses>
<add baseAddress="net.tcp://localhost:8082" />
</baseAddresses>
</host>
</service>
当我尝试在服务主机中运行它时,我得到以下异常:
在合同列表中找不到合同名称“IMetadataExchange” 由MessageReaderService服务实现。将ServiceMetadataBehavior添加到
配置文件或直接向ServiceHost启用对此合同的支持。
所以我从这个错误中得出结论,我需要添加一个服务行为来公开元数据。
所以我添加了行为:
<behavior name="ServiceBehavior">
<serviceMetadata httpGetEnabled="true"/>
</behavior>
然后我得到了一个不同的错误:
ServiceMetadataBehavior的HttpGetEnabled属性设置为true和 HttpGetUrl属性是相对地址,但没有http基址。或 提供http基址或将HttpGetUrl设置为绝对地址。
答案 0 :(得分:16)
两件事:
(1)一旦您定义了服务行为,您当然也必须将其应用到服务中!
<service name="MessageReaderService.MessageReaderService"
behaviorConfiguration="ServiceBehavior">
(2)您不需要HTTP端点 - 您不需要拥有HTTP URL - 只需定义此服务行为:
<behavior name="ServiceBehavior">
<serviceMetadata />
</behavior>
您的元数据现在可以在mexTcpBinding
端点上使用 - 您无法使用HTTP浏览它,但客户端肯定可以连接到它并使用它!
您可以使用WCF Test Client并转到
来验证这一点net.tcp://localhost:8082 (the base address)
或
net.tcp://localhost:8082/mex (the mex address)
在这两种情况下,WCF测试客户端现在应该找到您的服务并能够发现其功能。