can't able to upload binary data using socket.io-chatserversample.jmx

Issue #173 closed
Stalin Gunasekaran N created an issue

Thanks for the library. I have followed your “socket.io-chatserversample.jmx” sample and can able to send a text message

in JMeter and can able to listen in the server using the event “text”

like

socket.on('text', function(data){

socket.emit('text','received text'+data);

});

but can’t able to listen to binary data sent from the sample (socket.io-chatserversample.jmx)

I have tried to listen to binary data with an event like “binary” and its not working

socket.on('binary', function(data){

socket.emit('binary','received binary'+data);

});

I am getting a response that the binary data sent successfully but doesn’t know how to listen to binary data in the server.

On which event I should listen to the binary data in the server, sent from the sample(socket.io-chatserversample.jmx)

can you please help me to fix this.

Thanks

Comments (3)

  1. Peter Doornbosch repo owner

    Seems you are looking for help on socket.io. This is not the place for that, you are here in the issue tracker for the jmeter websocket plugin.

    Cheers,
    Peter

  2. Log in to comment