Cross App Domain Events
Here is what I am trying to do. I have client applications that send data to my server app. When the server is done processing the data, I would like for it to raise an event that the clients can subscribe to. This event would tell the client that the processing is done. The problem is I don't want the client to have to make a request in order for the event to be raised. Is there any way to do this?
Zoran HorvatPosted Jul 26, 2011, 9:25 AM
This approach might require you to code a helper class which would serve a sole purpose of passing events accross application domains.
Zoran