Bir tane çalışan socket bağlantım var
ws = new WebSocket('wss://..com/socket/843902');
ws.onopen =function (event){
alert("[open] Connection established");
ws.send("My name is John");
ws.close();
}
ws.onmessage =function (event){
alert(`[message] Data received from server: ${event}`);
}
function sendMessage(){
ws.send('hello');
}
şeklinde test etmek istiyorum on open fonksiyonu çalışıyor fakat onMessage çalışmıyor neden olabilir bu ?