0

Can ActiveMQ Artemis propagate basic authentication information (username, password) from a Websocket to the encapsulated STOMP protocol (STOMP-over-Websockets)? The documentation does not really help here.

Stephan
  • 245
  • 1
  • 7

1 Answers1

1

The broker will not propagate basic auth credentials from a Websocket upgrade HTTP request to the encapsulated STOMP protocol. STOMP has its own login and passcode headers to deal with authentication. These are part of the CONNECT or STOMP frames. Your STOMP client should have a way to set these.

jbertram
  • 208
  • 1
  • 3