vote up 0 vote down star

I would like to make a class where the client side (proxy) of the instantiated object can register to an event (or delegate) and be informed whenever this event is fired on the server side.

I tried directly but I get a SecurityException informing me that System.DelegateSerializationHolder cannot be serialized at this security level.

Is there a way around this?

Example:

MyClass proxy = Activator.GetObject(typeof(MyClass ), uri) as MyClass;
proxy.OnMyEvent += new MyEventHandler(this.Callback);
flag

42% accept rate

1 Answer

vote up 0 vote down check

No. Not directly anyway.

Your choices would be to either have the client call back to the server and register a with it a port for out of band controls from the server. This could open up all sorts of security concerns.

Probably the best way would be to have the client poll the server to see if any events need to be processed. This leaves the control of information requests in the clients domain, and is how Microsoft Exchange and other products I've worked with tend to handle this scenario.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.