"websocket" section
Configures websocket connections for Codebeamer.
A typical example
"websocket": {
"enabled": true,
"massLimit": 2,
"allowedOrigins": "https://uatcodebeamer.com, https://codebeamer.com"
}
Properties
Attribute
Description
enabled
Default value is false. If set to true, Websocket messages will be sent to subscribed clients about the following events:
Tracker Item create/update.
Attachment addition.
Tracker item locking/unlocking.
Custom messages that a client wants to broadcast to every other subscribed client.
allowedOrigins
Enables users to configure origins that are allowed for WebSocket requests. The value for allowedOrigins is a comma separated list of origin URLs that are applicable for WebSocket connections. The URLs are specified with scheme, hostname, and port details.
* 
If a user does not configure this property or specifies an empty string as value, the default allowed origin will be the application base URL. For allowing request from any origin, you can set it as"allowedOrigins" : "*".
Was this helpful?