Click here to Skip to main content
15,891,012 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Dear Friends,

I am using signal R for notification in this i am using the following script
script src="js/jquery-1.9.1.js"></script>
<script src="js/jquery.signalR-2.0.2.min.js"></script>





<script src="<%# ResolveUrl("~/") %>/signalr/hubs"></script>
but, i am getting the error like signal hub is not found for only when i use 2.0.2 version or else i am not getting the error
Following is my start up class
using Microsoft.AspNet.SignalR;
using Microsoft.Owin;
using Owin;
[assembly: OwinStartup(typeof(SignalR_SQLServer_Notification_Hubs.Startup))]
namespace SignalR_SQLServer_Notification_Hubs
{
public class Startup
{
public void Configuration(IAppBuilder app)
{
// Any connection or hub wire up and configuration should go here
app.MapSignalR();
//GlobalHost.HubPipeline.AddModule(new RejoingGroupPipelineModule());
}
}
}
Posted
Updated 3-Jul-14 23:49pm
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900