Hi
I am testing the Websocket library from Rebex Labs for use in Windows Embedded Compact 2013, which uses the .Net CF 3.9 framework.
Mostly it works quite well (and better out-of-the-box than any other library I've tried), but it appears that when I have a Query parameter in the URL, then this value is either not sent or somehow corrupted. In any case, the server doesn't appear to see it.
Example:
WebSocketClient client = new WebSocketClient();
client.Connect(@"ws://websocket.website.com/subDomain/page.ashx?channel=123");
In this particular case, if I don't identify a channel in the URL, then the server sends a single line ("not identified") and immediately disconnects.
This leaves the client in State=Open, but any send or receive operation causes a socketexception. Sometimes I can read the single line, usually I can't.
Am I interpreting the situation correctly that the "?channel=123" part of the URL is being dropped/ignored/corrupted? Is there any way around this?
edit: GET -> Query