Sorry, but there are no more tags available to filter with.
Just solved a problem that I had a hard time googling to solve, so I wanted the next guy to have an easier time : When creating a remoting connection from a client to a server, and you want the server to be able to raise events back to the client, you must set a property called "tokenImpersonationLevel" to "impersonation" on the dictionary used to initialize the channel. i.e. : /// <summary> /// Setup a client channel for the server to use during callbacks (events) /// <...