1iveowl / WebsocketClientLite.PCL

Websocket client lite
MIT License
38 stars 14 forks source link

Message Size greater than 126 Characters #22

Closed alberk8 closed 7 years ago

alberk8 commented 7 years ago

Hi I have a json string greater than 126 characters but shorter than 1024 character in length, The problem is that the SendTextAsync is sending 0 bytes across to the websocket server. if the string is less than 126 chars then the server will receive it without problems.

How do I get around this without other complication? Thank you.

await websocketClient.SendTextAsync(jsonData);

1iveowl commented 7 years ago

Thank you. I will look into this.

1iveowl commented 7 years ago

There was a bug. It gone now. Try NuGet v. 3.6.8.

Please report back when you have tested if it works, so I can close this issue.

alberk8 commented 7 years ago

Hi,

I looks like the problem is fixed now. Will communicate if we encounter any more problems. Thank you.