I created an object client = new TcpClient()
Then try to connect to another workstation via
client.Connect(System.Net.IPAddress.Parse("192.168.1.3"), 1000);
I got the error message "No connection could be made because the target machine actively refused it".
My and the other workstation are both on the same network, and have the Windows Firewall off. I can also ping the other workstation from mine successfully.
Does anybody know how to fix this?
Thanks.
Then try to connect to another workstation via
client.Connect(System.Net.IPAddress.Parse("192.168.1.3"), 1000);
I got the error message "No connection could be made because the target machine actively refused it".
My and the other workstation are both on the same network, and have the Windows Firewall off. I can also ping the other workstation from mine successfully.
Does anybody know how to fix this?
Thanks.