I have bought a WebSocket module and installed it on my WAMP environment. I also have a PHP script which generates the IPC file at the correct location and loops forever to
On a WebSocket connection you want a 101 Switching Protocols
status response.
Getting a 200
status response, probably means that the request didn't reach your WebSocket Handler.
I would also look into the dev-tools, and check if the response has any WebSocket handshake headers.
If it has, I would assume it's a problem with the module. Otherwise it's probably your configuration.
Such a response means the remote ressource located at the URL doesn't listen or at least can't respond to a websocket request. Check the remote service you try to reach. And if you have coded the server, post your source