When testing a web service in Visual Studio I got the "System.Net.SocketException - Only one usage of each socket address (protocol/network address/port) is normally permitted" error, which prevented me from testing the code. I quickly
google the
error and got the following solution:
- Open regedit.
- Open key HKLM\System\CurrentControlSet\Services\Tcpip\Parameters
- Create or Edit DWORD with MaxUserPort as the value.
- Set it to a higher number. (i.e. 50000 Decimal)
Answered by JRista
No comments:
Post a Comment