What's the simplest way to check if anything is listening on net.tcp://localhost:8801/ Preferably using WCF
+4
A:
I don't think WCF is the best way to do that. Simply open a Socket
(or TcpClient
) and try connecting to that endpoint.
Mehrdad Afshari
2010-02-05 00:46:09
Search StackOverflow. There are lots of examples of using those classes in C# on here.
Matt Jordan
2010-02-05 20:31:49