Remoting to multiple clients
-
What I want is a remoting host that keeps one copy of the remoted object for each of the clients. I need my host to act this way because each client will request and decode a message. If the message is correctly decoded, a private boolean variable in the remoted object is set to true. This is the only way I could think of to authenticate clients without going through a login process. If my host uses Singleton mode: once one client authenticates itself, all the clients will be authenticated. In other words, authentication can be bypassed if a legitemate user is already in. If my host uses SingleCall mode: once a client authenticates itself, the remoted object will be destroyed, and the client won't be able to call any subsequent functions. I hope this makes sense. Any suggestions would be greatly appreciated. Thanks, Steve