London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!

EPiServer Live Monitor - "/signalr/hubs?" returns 404

Vote:
 

Hello!

I'm trying to set up EPiServer Live Monitor.

This is what I have done:

  • Installed NuGet package EPiServer.LiveMonitor
  • Added this line to appSettings: 
  • Created a Owin startup class

Now, when I click on the "Live Monitor" button, I get a 302 when "/signalr/hubs?" is requested, which is a redirect to our 404 page.

See this image:

Can anyone help?

#123587
Jul 09, 2015 9:56
Vote:
 

This is the startup class:

using Microsoft.Owin;
using MyApp.Web.Plumbing;
using Owin;

[assembly: OwinStartup(typeof(OwinStartup))]

namespace MyApp.Web.Plumbing
{
    public class OwinStartup
    {
        public void Configuration(IAppBuilder app)
        {
            app.MapSignalR();
        }
    }
}

I'm using IIS 7.5.

#123588
Edited, Jul 09, 2015 10:01
Vote:
 

It seems like this suggestion helped:

"The solution was to totally empty the asp.net cache".

#123589
Edited, Jul 09, 2015 10:05
This topic was created over six months ago and has been resolved. If you have a similar question, please create a new topic and refer to this one.
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.