access to socket denied

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Two windows forms programs are communicating via .NET remoting accross the
network. The .Net remoting configuration file defines following channels:

<channels>
<channel ref="tcp" port="8111">
<clientProviders>
<formatter ref="binary" includeVersions="false"
strictBindign="false"/>
</clientProviders>
<serverProviders>
<formatter ref="binary" includeVersions="false"
strictBindign="false" typeFilterLevel="Full"/>
</serverProviders>
</channel>
</channels>

Everything works fine as long as the windows xp users have administrator
rights.
As soon as a user with lower rights starts the program, he gets the error
message "An attempt was made to access a socket in a way forbideen by its
access permission".

Can anybody tell me how to grant this user the right to access the socket?

Thanks a lot, Markus.
 
Create a NET passport for User Accounts in Control Panel's>User Accounts.
I have given all Users Administrative privilege, but that may not be your
option.
 
Back
Top