-
Notifications
You must be signed in to change notification settings - Fork 389
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
Sending messages to specific group is not working in Azure function based SignalR service #145
Comments
Replying long after you did but thanks for your help. I've been looking through docs for serverless signalR for a bit now and your post was the first time i've seen mention of setting the |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Azure SignalR service + Azure function based hubs
I am just wondering if sending message to specific group within connected clients is working at all for anyone? Broadcast is working well though! Likewise, sending message to a specific user within connected clients is also not working just like sending to a specific group of users. Not sure if I am missing something in this context. Any leads would be appreciated!
The target method i.e. 'GroupSpecificMessageTargetCaller' is never triggering in the client side javascript.
On the contrary broadcast message to all connected clients is working well though. Target method 'BroadcastMessageTargetCaller' in the html client is getting triggered in broadcast case.
Client side code
Attaching complete source code for any further investigation.
Thanks in advance!
AzureFunctonBasedSignalRService.zip
Server code-->
namespace MyFirstAzureFunction
{
public class MaintenanceHub : ServerlessHub
{
}
The text was updated successfully, but these errors were encountered: