You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi!
First of all, I would like to thank you for the effort you put in creating this library. The ease of use and clean syntax makes it great to work with.
I am trying to create a websocket connection to a server. However, when adding the port to the host in the initial handshake message, the server returns HTTP/1.1 404 Not Found.
E.g. This can connect to the server:
ss << "GET " << path << " HTTP/1.1\r\n";
ss << "Host: " << host << "\r\n";
ss << "Upgrade: websocket\r\n";
And this cannot:
ss << "GET " << path << " HTTP/1.1\r\n";
ss << "Host: " << host << ":" << port << "\r\n";
ss << "Upgrade: websocket\r\n";
I am completely new to websockets so I am unsure if this is a problem with IXWidgets. If it is, I am more than willing to create a pull request to fix this.
The text was updated successfully, but these errors were encountered:
Hi!
First of all, I would like to thank you for the effort you put in creating this library. The ease of use and clean syntax makes it great to work with.
I am trying to create a websocket connection to a server. However, when adding the port to the host in the initial handshake message, the server returns HTTP/1.1 404 Not Found.
E.g. This can connect to the server:
And this cannot:
I am completely new to websockets so I am unsure if this is a problem with IXWidgets. If it is, I am more than willing to create a pull request to fix this.
The text was updated successfully, but these errors were encountered: