我正在开发一个 Qt 应用程序,该应用程序通过 WebSocket 与我的 Web 浏览器(目前是 Google Chrome)进行通信。
一切正常,直到我尝试使用安全的 websockets ......
我设法解决了我在使用 OpenSSL 时遇到的问题,所以现在我应该有一个可以工作的 Qt 应用程序,但我没有。
我正在使用 VS2013 和 Qt 5.3。我有以下代码来启动我的服务器:
MyClass::MyClass (quint16 port, QObject *parent) :
QWebSocketServer("Press And Listen Server", QWebSocketServer::SecureMode, parent) {
QSslConfiguration sslConfiguration;
QFile certFile (QStringLiteral ("localhost.crt"));
QFile keyFile (QStringLiteral ("localhost.key"));
certFile.open (QIODevice::ReadOnly);
keyFile.open (QIODevice::ReadOnly);
QSslCertificate certificate (&certFile, QSsl::Pem);
QSslKey sslKey (&keyFile, QSsl::Rsa, QSsl::Pem);
certFile.close ();
keyFile.close ();
sslConfiguration.setPeerVerifyMode (QSslSocket::VerifyNone);
sslConfiguration.setLocalCertificate (certificate);
sslConfiguration.setPrivateKey (sslKey);
sslConfiguration.setProtocol (QSsl::TlsV1SslV3);
this->setSslConfiguration (sslConfiguration);
if (!this->listen (QHostAddress::Any, port)) {
throw ServerNotStartedException () ;
}
qDebug () << "Server listenning on: " << port ;
connect (this, &QWebSocketServer::newConnection, this, &MyClass::onNewConnection);
connect (this, &QWebSocketServer::closed, this, &MyClass::onClose);
connect (this, &QWebSocketServer::sslErrors, this, &MyClass::onSslErrors);
}
我使用以下方法创建了证书文件:https ://developer.salesforce.com/blogs/developer-relations/2011/05/generating-valid-self-signed-certificates.html
在浏览器端,我只有:
var websock = websock = new WebSocket('wss://localhost:52132');
websock.onerror = function (error) {
console.log('Press & Listen, WS Error: ' + error);
};
websock.onopen = function () {
console.log('Open!');
};
不幸的是,每次我尝试时,都会收到以下 JS 消息:
WebSocket connection to 'wss://localhost:52132/' failed: Error in connection establishment: net::ERR_TIMED_OUT
至今:
QSslSocket::supportsSsl ()
返回true
- 我没有任何
QSslSocket: cannot resolve XXX method
消息 加载 OpenSSL DLL,VS2013 输出以下消息:
“MyProject.exe”(Win32):已加载“I:\Sources\VS2013\x64\Release\ssleay32.dll”。无法找到或打开 PDB 文件。“PressAndListenQt.exe”(Win32):已加载“I:\Sources\VS2013\x64\Release\libeay32.dll”。无法找到或打开 PDB 文件。`
我不知道如何找到问题所在,所以我愿意接受任何建议!
编辑:我尝试使用以下内容(而不是上面的链接)生成自签名证书:
openssl req -x509 -newkey rsa:2048 -keyout key.pem -out cert.pem -days 100 -nodes
现在我得到另一个错误:
WebSocket connection to 'wss://localhost:52132/' failed: WebSocket opening handshake was canceled