You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi I have a working solution using Serverless with Azure Functions and the Local Emulator for serverless development.
I am trying to send messages using the REST API (from outside the Hub Class) but I don't know the local endpoint for the Local Emulator , if I set the endpoint to the azure services it works , I can see the log on the Live Trace tool , but my clients are connecting to the emulator and they don't receive the message (which makes senses).
so my question how do I setup the REST API to send massages to the local emulator ?
When local emulator starts, it prints the connection string which contains an "Endpoint=...Port=..." part. This is the endpoint+port for local emulator, for example, with the default settings asrs-emulator start, the connection string is Endpoint=http://localhost;Port=8888;AccessKey=..., for this one, the endpoint is http://localhost:8888. And for example, the health check URL will be http://localhost:8888/api/health.
Hi I have a working solution using Serverless with Azure Functions and the Local Emulator for serverless development.
I am trying to send messages using the REST API (from outside the Hub Class) but I don't know the local endpoint for the Local Emulator , if I set the endpoint to the azure services it works , I can see the log on the Live Trace tool , but my clients are connecting to the emulator and they don't receive the message (which makes senses).
so my question how do I setup the REST API to send massages to the local emulator ?
private readonly string _localEndpoint = "http://localhost:7071/runtime/webhooks/signalr";
Thanks.
The text was updated successfully, but these errors were encountered: