Is it possible to send a message to specific session?
I have an unauthenticated websocket between clients and a Spring servlet. I need to send an unsolicited message
You need to simply add the session id in
Server Side
convertAndSendToUser(sessionId,apiName,responseObject);
Client Side
$stomp.subscribe('/user/+sessionId+'/apiName',handler);
Note: Dont forget to add '/user' in your end point in server side.
'/user'