Using Signalr In dnn

252 views Asked by At

I am using signalr library in my DotnetNuke module. Currently I have inserted the follwing record to hostsettings table in DNN DB

insert into hostsettings
(SettingName
, SettingValue
, SettingIsSecure 
, CreatedByUserId
, CreatedOnDate
, LastModifiedByUserId
, LastModifiedOnDate
)
values(
'AUM_DoNotRewriteRegEx'
,'/DesktopModules/|/Providers|/LinkClick\.aspx|/SignalR'
, 0
, -1
, GETDATE()
, -1
, GETDATE()
)

So when i access my module using this url it works fine. (http://dnndev.me/ChatModule)

But when i created a Child portal and add the module and tried to access using (http://dnndev.me/p3/ChatModule) it is giving me error "NetworkError: 404 Not Found - http://dnndev.me/p3/signalr/hubs"

Can someone guide me here to the correct path

0

There are 0 answers