I'm using socketstream version 0.3.4.
I'm using an rpc call to send image data extracted from an html5 canvas element as follows:
strDataURI = newCanvas.toDataURL("image/jpeg")
When I send strDataURI along with a couple of other parameters via an rpc call locally on my mac - no problem it works just fine.
When I connect to a remote server (EC2) using the same code as soon as the rpc call is made the socket immediately disconnects with no error message.
All the other socketstream rpc calls work just fine when I am sending to the remote server.
Is there some kind of restriction on the type of data that can be sent by socketstream or
engine.io over particular socket connection types (I am thinking I probably get a different type of socket remotely to locally) ?