tags:

views:

180

answers:

1

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

A: 

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.

unwind
Actually my application listens on 8085 port in a machine,if clientswant to send a message means its only through the port 8085,how to avoid this
karthik