-
Notifications
You must be signed in to change notification settings - Fork 390
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AzureSignalR connection correct, but not notifying #126
Comments
@DavidStania It should be OK, can you repro the issue after restarting the service instance? |
@vwxyzh after restarting service, problem still exists. |
Let me check the service log. |
I don't know why, but i got this erro
Today it is not possible to established connection. |
found my mistake! Right var connection = new signalR.HubConnectionBuilder()
.withUrl('/TwinHubDashboard')
.configureLogging(signalR.LogLevel.Information)
.build(); Wrong var connection = new signalR.HubConnectionBuilder()
.withUrl('/TwinHubDashboard', {
skipNegotiation: true,
transport: signalR.HttpTransportType.WebSockets
})
.configureLogging(signalR.LogLevel.Information)
.build(); while skipping Negotation, connection never starts with azure service. @vwxyzh Thank you for support. |
i am seeing the same error, but I am not skipping negotiation.
Looking at the logs on the server: I am seeing this repeated:
I logged this issue: Azure/azure-signalr#944 already but perhaps this is related? |
Hey Guys,
I have a smal problem after publishing my web app on azure and consuming AzureSignalR.
After starting app, connection is working well and I can join groups. But if I push a Notification from my app like
groups were not notifyed.
#setup.cs ConfigureServices
But without .AddAzureSignalR(), so as local service, everything is working. Also after publishing on azure.
Any ideas whats going wrong?
The text was updated successfully, but these errors were encountered: