I have a client and server program using ws4py using secure (SSL) websockets. The TLS handshake and then the Websocket handshake all works, but when I send a message from the client to the server using the send() routine, the message is not delivered to the server app.
If I switch the same program to not use SSL, then everything works, i.e. send() and receive works fine between the client and server.
In the SSL mode, if I send the message the twice from the client, then both messages are delivered to the server. What could be the issue?
Thanks,
Vivek