Unable to read data from the transport connection: Connection reset by peer

0

Follow the code: here .

The client code is getting an exception:

  

Unable to read data from connection: Connection reset by   peer.

Why this error? And how can I fix it?

    
asked by anonymous 26.03.2018 / 16:34

1 answer

1

Here's an attempt to translate some parts of the David answer that seem to me to be most interesting to you. .

This error usually means that the server is running, but the service you are trying to connect to is not available. (It may be stopped, stopped working, or busy with another request)

... It is possible that this is caused by a blocked port on the firewall ...

The rest of his answer seems to be more focused on the specific question they asked here .

I hope it helps.

    
26.03.2018 / 16:45