I'm trying to get Live Monitor with EPiServer to work.
However, when the page loads,it returns a 302 on /signalr/hubs?
, which is just a redirect to our 404 page.
See this screenshot:
This is my startup class:
using Microsoft.Owin;
using Owin;
[assembly: OwinStartup(typeof(MyWebApp.Web.Plumbing.OwinStartup))]
namespace MyWebApp.Web.Plumbing
{
public class OwinStartup
{
public void Configuration(IAppBuilder app)
{
app.MapSignalR();
}
}
}
I have installed these NuGet packages:
- Microsoft.Owin
- Microsoft.Owin.Security
- Microsoft.AspNet.SignalR.Core
- Microsoft.AspNet.SignalR.SystemWeb
- EPiServer.LiveMonitor
I don't have any experience working with this; can anyone help?