Signalr
Hi!
For work I have to connect the middleware with the backend in a fast way so I ended up deciding to use signalr.
I have a serverless signalr instance running in azure and an azure function for the bindings
I am start with a small poc to fully understand how it's working
The azure function is uploaded as a file as it is too big
1 Reply
Here's the Program.cs ( i use the isolated worker as in-process will be deprecated)
Here is the sample webapi
I have the azure function running locally on 7104, and the 2 webapis are discoverable through public webtunnels.
Negotiation works fine
but any other method invoked from the client to server just doesn't work
Am I approaching the problem wrong? My goal is to send messages back and forth in a fast way
And the reason i "decided" on signalr is for the auto scalability which is needed