I\'m trying to write a simple websocket client in Java to connect to a 3rd party WebSocket server (I have no access to the server).
I can connect and communicate with th
I found the issue - it was that the ws address required a '/' on the end of it when being run from a java client.
JavaScript ws://192.168.0.25:9000
Java ws://192.168.0.25:9000/
Not sure why this is required in Java - but it solved the issue...