Hello,
whe I use the websocket Client Library, the connection string I receive with the demo-project with me own Server App (written in VB6) is ok:
But when I try to send a text, every send-request I receive another string.
I try to send the string "test" with:
My Server receives lines like this (every line is one attempt):
„±UYÅo&-
㉄@jЫ3
„yG¬ð"ß„
„¨ÏÃÕܪ°¡
What is wrong?
Thank you!
whe I use the websocket Client Library, the connection string I receive with the demo-project with me own Server App (written in VB6) is ok:
Connection-string my server receives:
GET /ws HTTP/1.1
Host: xxxxxxxxxxxxx.myfritz.net:4750
Upgrade: WebSocket
Connection: Upgrade
Sec-WebSocket-Key: asIBtB/kYe8zBRS29Ewv1A==
Sec-WebSocket-Version: 13
But when I try to send a text, every send-request I receive another string.
I try to send the string "test" with:
Sending Text:
wsh.ws.SendText( "test")
My Server receives lines like this (every line is one attempt):
„±UYÅo&-
㉄@jЫ3
„yG¬ð"ß„
„¨ÏÃÕܪ°¡
What is wrong?
Thank you!