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!
AI OnAI Off
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!
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.
Hello!
I'm trying to set up EPiServer Live Monitor.
This is what I have done:
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?