I’m having trouble with the most basic example https://github.com/SignalR/SignalR/wiki/QuickStart-Persistent-Connections. I get “404 on echo/negotiate”
I’m having trouble with the most basic example https://github.com/SignalR/SignalR/wiki/QuickStart-Persistent-Connections . I get 404 on
Share
The example is out of date.
It’s because the default MVC-project calls RegisterRoutes(RouteTable.Routes);
You have to move the MapConnection to inside the RegisterRoutes, after the routes.IgnoreRoute(“{resource}.axd/{*pathInfo}”; but before any other routes.
I hope this helps