@TeunGri173
I did a test against http://www.websocket.org/echo.html with QWebView in my application. This test is working correctly.
So there is someting with the QWebSocketServer I use.
The only I do is:
ws = new QWebSocketServer("", QWebSocketServer::NonSecureMode, this); ws->listen( QHostAddress::Any, 13031);
And of course connect to the newConnection() signal.
resume test results:
Backend
Frontend
Result
websocket.org
QWebView
OK
websocket.org
FireFox
OK
websocket.org
Chrome
OK
QWebSocketServer
QWebView
FAIL
QWebSocketServer
FireFox
OK
QWebSocketServer
Chrome
OK
Only the combination QWebSocketServer / QWebView failed.
Any hints wat to configure in QWebSocketServer ?
Or could it possibly be a bug ?
Thanks in advance for your info.