(WCF Service) Toggle on/off discovery endpoint

348 Views Asked by At

I'm developing a simple WCF-based application.

My service is very simple, just 2 endpoints: 1) The service 2) updDiscovery

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

It works great but I'd toggle on/off the discoverability of my service. I tried to change the Enable parameter but it doesn't work.

Can you help me please?

Cheers Mauro

1

There are 1 best solutions below

2
On

Add a behaviousConfiguration to your udpDiscovery end-point. Within the behaviour, put <endpointDiscovery enabled="false"/>