|
Quote:
|
|
TCP error code 10061: No connection could be made because the target machine actively refused it 10.0.2.25:9000. ---> System.Net.Sockets.SocketException: No connection could be made because the target machine actively refused it 10.0.2.25:9000
|
Based on the information in the thrown exception I would say that there are a couple of different things that could be causing this error message.
A. A firewall or Proxy on the server machine is actively refusing the connection on TCP 9000. If this is the case you will need to add an exception for communication on this port.
or
B. There is another application on the server that is already using that port. This can be easily diagnosed by simply stopping the D-Tools service on the server and then run a netstat -a from the command prompt to see if tcp 9000 is still listening. If it is still active then you will need to reinstall your server components and specify a different port thats not already in use.
Also, here is a link to more information on how to troubleshoot TCP error 10061.
http://www.dameware.com/support/kb/a...aspx?ID=300006
Good Luck!