Initializing ServiceStack AppHost in SignalR`s Startup.Configuration() method

Hello,

Due discovered issues we decided to replace SSE with SignalR. Since SignalR works with OWIN, we have two application startup points now.

Is it safe to initialize ServiceStack AppHost class within SignalR initialization method (Startup.Configuration)?

According to the documentation it should be called slightly later than Application_Start().

Thank you

Sounds like OWIN’s Startup.Configuration is called just after Application_Start() so it should work fine.