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 websocket. Are there options, like streaming, to send larger amounts of data?
I understand I can always send a url back to client and have it make a standard REST call to get the data. But, I think it would be cooler if I could just reply with the data inside a message.
I realize this may not what it is designed to handle (request/response), but I'd like to know what other options are supported by signalR Service. I don't see anything in the documents specific to the fully-managed service.
I'm only looking for suggested options, not judgement of the idea. :)
Thanks, Donnie