0

我正在开发一个简单的基于 WCF 的应用程序。

我的服务很简单,只有 2 个端点:1)服务 2)updDiscovery

<services>
    <service name="myService">
        <endpoint address="http://192.168.1.18/service"/>
        <endpoint name="udpDiscovery" kind="udpDiscoveryEndpoint" endpointConfiguration="adhocDiscoveryEndpointConfiguration"/>
    </service>
</services>

它工作得很好,但我会打开/关闭我的服务的可发现性。我试图更改 Enable 参数,但它不起作用。

你能帮我吗?

干杯毛罗

4

1 回答 1

0

将 behaviousConfiguration 添加到您的 udpDiscovery 端点。在行为中,把<endpointDiscovery enabled="false"/>

于 2013-05-07T07:44:15.083 回答