Call a SignalR method from a different AppDomain
问题 I have a working web server written in C# using SignalR. It's a self-hosted Owin Application. Everything works fine. Now I have to relocate my controllers in different AppDomains. This breaks the SignalR part, because GlobalHost remains the same only within one AppDomain, and is not serializable (thus I can't pass it along to other AppDomains as it is). I've found a lot of examples/questions/tutorials about calling SignalR hubs methods from a Controller/an other class/whatever, but nothing