views:

19

answers:

1

Hi all, I have a .Net Remoting server that can accept connections from my remote client app. During the initialization of the client application, it calls ChannelServices.RegisterChannel and then RemotingServices.Connect to create a channel and connect to the server. Every customer has a unique id that we are using for the channel name. Today, one can launch few instances of the client application. We would like to prevent this situation. We would like to allow only one connection per user. Is it possible to do with .Net Remoting?

The options we would like to check: 1. Is it possible to check on the server if a client channel name already used by an open connection and throw an exception when a client calls to RemotingServices.Connect using the same unique channel name? 2. Is it possible to have a list off all open connections on the server and manipulate them (close connection, get connection info etc.)? 3. Is there any other option to achieve this behavior?

TIA Eduardo

A: 

Hi, I have the same problem, I would like to know if there is a solution for that.

Thanks

Uzi.