Questions tagged [azure-signalr]

Questions about the Microsoft Azure SignalR Service

Azure SignalR Service simplifies the process of adding real-time web functionality to applications over HTTP. This real-time functionality allows the service to push content updates to connected clients, such as a single page web or mobile application. As a result, clients are updated without the need to poll the server, or submit new HTTP requests for updates.

246 questions
0
votes
1 answer

EventSource's response has a MIME type ("text/plain") that is not "text/event-stream". Aborting the connection Azure SignalR

EventSource's response has a MIME type ("text/plain") that is not "text/event-stream". Aborting the connection Azure SignalR I am Getting the error continuously in MVC c# project, How to resolve the same
Piku Shrivastav
  • 119
  • 1
  • 1
  • 9
0
votes
1 answer

SignalR usage in Azure Function App and publishing on portal

When I am using Azure SignalR version 1.0.2 with latest Azure Function version 3.0.3, the function app runs fine locally, but when published (Zip Deploy) on Azure Portal, I am getting the following error: The Nuget Packages in my project are: The…
0
votes
2 answers

Azure SignalR with multiple clients

In my existing application I have an .NET API and a .NET Web Application and some Azure Web Jobs. I want the Web Application to be listening to messages that should be broadcasted either by the API or per the Azure Web Jobs. I am a but confused in…
legollas007
  • 193
  • 2
  • 12
0
votes
1 answer

Controller - check/ping external dependencies

I have a .NET Core 3 Web API that has some external dependencies like Azure SignalR and Azure CosmosDb. I have create a Monitoring Controller which I want to check if the service is healthy by for example pinging those two dependencies. I haven't…
0
votes
1 answer

Test Azure SignalR connection on server

In an Asp.net core 3 web app, is it possible to test the server's connection to an Azure SignalR service? Is there a recommended pattern for handling Server-to-SignalService connectivity issues such as trying to send when not connected and/or…
user1142433
  • 1,413
  • 3
  • 17
  • 34
0
votes
1 answer

Android : SignalR fails when android device enters Doze Mode

I am developing a Xamarin Forms app that connects to a Azure SignalR service to get server side events to notify the application about some events happening on the server. I have created a background service that is able make this connection to…
Kiran
  • 2,997
  • 6
  • 31
  • 62
0
votes
0 answers

Azure SignalR not working on few types of phone

I am developing a Xamarin Forms app for Android where in i need to receive events from server using Azure SignalR function. This is working fine in few phones, however on few I get strange errors. Redmi 4 running Android 7.1 I see that the…
Kiran
  • 2,997
  • 6
  • 31
  • 62
0
votes
1 answer

Azure Function SignalR Negotiate function works but Send function fails

i have a xamarin app that is trying to talk to use SignalR in Azure functions. i have 2 azure functions as per the documentation. public static class NegotiateFunction { [FunctionName("negotiate")] public static SignalRConnectionInfo…
Raas Masood
  • 1,475
  • 3
  • 23
  • 61
0
votes
1 answer

How to resolve Azure SignalR Service Cert Authority Invalid

I'm using Azure SignalR Service and am getting the error message below: WebSocketTransport.js:85 WebSocket connection to 'wss://mysignalrservice.service.signalr.net/client/? hub=contestchange&id=my_id&access_token=my_token' failed: Error in…
devlife
  • 15,275
  • 27
  • 77
  • 131
0
votes
1 answer

Unable to display Real Time Data, While doing so Python Web App is Generating Error "Internal Server Error"

Application is receiving data in real time (checked using alert) while to display it on the card, it gives error Internal Server Error Same Code is running well as an independent html page but not in flask python web app.
0
votes
1 answer

Azure Function SignalR | negotiate function | Fails with 500 error code

I have installed Microsoft.Azure.WebJobs.Extensions.SignalRService using extensions.csproj. netstandard2.0
Ashokan Sivapragasam
  • 2,033
  • 2
  • 18
  • 39
0
votes
1 answer

Azure SignalR Service slow on first message

Azure SignalR Service, hosted version, is slow on first message. My setup is two Azure Functions, one for sub and one for pub. (just like the Microsoft example). Not sure if it is SignalR or the Azure Functions that cause this slow startup. How do…
Donnie Kerr
  • 334
  • 4
  • 18
0
votes
1 answer

Azure functions development and configuration with Azure SignalR Service throws an error message on connection string

Here it is the code of the function which is pretty much straight forward: [FunctionName("negotiate")] public static SignalRConnectionInfo Run( [HttpTrigger(AuthorizationLevel.Anonymous)] HttpRequest req, …
0
votes
1 answer

SignalR Service large message options

SignalR Service in Azure, not .Net. I send a lot of SignalR messages via normal web sockets. However, it has a size limit for the message. It some cases, I would like a message to be sent from the server-side to include a JSON response over…
Donnie Kerr
  • 334
  • 4
  • 18
0
votes
1 answer

Azure SignalR Notifications from Service Bus Qeue

We have a Service Bus queue that handles multiple message topics/subscriptions and what we'd like to be able to do is when certain messages have been handled is to notify connected users that a message has been handled. The message handling takes…
Gaz
  • 1,249
  • 3
  • 19
  • 37
1 2 3
16
17