karthik
karthik

Reputation: 4735

Only one usage of each socket address (protocol/network address/port) is normally permitted

I done an application in .NET Remoting. I register a port (8085) in my server application. I have 2000 clients they all send an update every 2min to my server through the same port (8085). I often get an error:

Only one usage of each socket address (protocol/network address/port) is normally permitted

2000 Clients -----> From 2000 Different Machines to the port 8085 in the server

Upvotes: 1

Views: 3473

Answers (1)

unwind
unwind

Reputation: 399833

See this thread for details on the problem. I suggest you stop requiring a particular port number on the client side, that's not generally needed.

Upvotes: 1

Related Questions