Skip to content

SignalR

The SignalR service incorporates the required functionality to allow for:

  • SignalR and/or REST requests to your service
  • JWT Authentication of those requests
  • The handling of the operations that are to be executed when a request is received

SignalR hub URL, e.g. http://localhost/chatHub.

What is a hub?
SignalR uses hubs to communicate between clients and servers. learn more.


The type of security used for authentication.

Select either None or JWT Authentication.

When selecting JWT Authentication, provide the following:

Secret key used to validate the JWT token.

Comma-separated list of claim names to resolve on the event input, e.g. "name,exp".


Click the icon to open the Methods Editor to add a collection of server-side SignalR methods.

Specify the names and parameters of the server methods that are to be executed as events when your SignalR service is accessed.

Click the icon to open the Methods Editor to add a collection of client-side SignalR methods.

Specify the names and parameters of the client methods that are to be executed as events when your SignalR service is accessed.

SignalR methods
SignalR Methods Editor

Introduction to SignalR