views:

744

answers:

2

I want to test whether wcf endpoint is reachable or not. Only available data is URI address to the service.

Can I connect to service to check whether it exist without creating the Client Proxy of service? I want to do programmatically

bool EndpointReachable(UriAddress) Also service can be net tcp

A: 

Open the address in a browser

eschneider
http://www.mydomain.com/MyService/MyService.svcorhttp://[IP Address]:[port]/MyService/MyService.svc
eschneider