Check if WCF service exists

.net-3.5, installation, wcf

Solution

The only way to know if the "service" "exists" is to call it.

To this purpose, many services include a "Ping" operation (or perhaps a "GetServerInformation" operation) that, when called, does little or nothing, other than prove the fact that the service exists.

Problem

What is the best way to check is the WCF service exists in a given ip and port? I want to check is the server exists on client installetion

Original source

Related problems