Reputation: 1804
I am implementing a Jetty Websocket servlet. When the server receives a new connection, I want to send a message that will be read by websocket's onopen function. I want this message to be sent only during the open and not using the regular connection.SendMessage() function. Is it possible to do that? and how?
Upvotes: 38
Views: 32447
Reputation: 14926
Don't forget the query string. It's valid in WebSocket url.
new Websocket('ws://yoursite.com/path?a=1&b=2&c=3')
Then you can easily parse this url on server side to retrieve the data.
Upvotes: 74
Reputation: 42195
There is no support for this in the protocol but you could fudge something yourself.
onopen
function, send a "read initial message" request.Upvotes: 26