Archived

This forum has been archived. Please start a new discussion on GitHub.

proxy object read write access

I would like to enforce read/write access (or something like it) on the proxy objects instantiated by my clients. Is there some Ice Way of doing this? If so, what is it and how can it be accomplished?

Comments

  • benoit
    benoit Rennes, France
    Hi,

    You should detail a little more what you are trying to achieve. If you are trying to ensure clients can only perform a restricted set of operations depending on their identity then most often the easiest is to use Glacier2 and the session/facade design pattern. Each client is connected through Glacier2 and you restrict the set of operations a client can perform on backend objects using a facade Ice object.

    See also [thread=4938]this thread[/thread].

    Cheers,
    Benoit.
  • The session/facade design pattern a la Glacier is probably what I'm going to need. Thanks very much for your help.