Please my SignalR App works well locally but after deploying to IIS win 10 it doesn't work.
I have tried to activate web sockets but all in vain please help how can i configure SignalR to work in my IIS.
I am using windows 10
Please help
Hi makumbi,
Add the following in the Web.config file.
<configuration> <system.webServer> <validation validateIntegratedModeConfiguration="false" /> <modules runAllManagedModulesForAllRequests="true"> </modules> </system.webServer> </configuration>
Reference: https://stackoverflow.com/questions/8053229/signalr-hub-not-loading-in-iis-7-but-working-correctly-in-visual-studio
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.