Comment 1 for bug 1459054

Revision history for this message
Tim Landscheidt (scfc) wrote :

Tested with script from https://pypi.python.org/pypi/websocket-client:

from websocket import create_connection
ws = create_connection("ws://echo.websocket.org/")
print "Sending 'Hello, World'..."
ws.send("Hello, World")
print "Sent"
print "Receiving..."
result = ws.recv()
print "Received '%s'" % result
ws.close()