Jeff Putz
Jeff Putz

Reputation: 14917

SignalR 3.0.0 won't generate the Javascript hub proxy

I'm using a new build of 3.0, which is not RTM (December 2015), with the RC1 bits of the rest of ASP.NET 5. I have the .AddSignalR() method in my start up, but I'm not getting the /signalr/js proxy. It comes up as 404. Any suggestions?

Upvotes: 1

Views: 71

Answers (1)

Stafford Williams
Stafford Williams

Reputation: 9806

You need app.UseSignalR() also in your Startup.Configure().

Upvotes: 1

Related Questions