0

我想打开一个 qt websocket 到测试服务,ws://echo.websocket.org但我收到错误QAbstractSocket::RemoteHostClosedError 我将信号连接error(QAbstractSocket::SocketError socketError)到我的代码中的一个插槽以读取错误号然后在这里查找它

我的代码看起来像这样

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);

    Controller w;
    w.initializeWebSocket("ws://echo.websocket.org", true);
    w.show();

    return a.exec();
}






Controller::Controller(QWidget *parent)
    : QMainWindow(parent)
{
    ui.setupUi(this);
}

void Controller::initializeWebSocket(QString url, bool debug)
{
    m_webSocketURL = url;
    m_webSocketDebug = debug;
    if(m_webSocketDebug)
        std::cout << "WebSocket server: " << m_webSocketURL.toStdString() << std::endl;
    QObject::connect(&m_webSocket, SIGNAL(connected()), this, SLOT(onConnected()));
    QObject::connect(&m_webSocket, SIGNAL(disconnected()), this, SLOT(onDisconnected()));
    QObject::connect(&m_webSocket, SIGNAL(error(QAbstractSocket::SocketError)), this, SLOT(onError(QAbstractSocket::SocketError)));
    QObject::connect(&m_webSocket, SIGNAL(textMessageReceived(QString)), this, SLOT(onTextMessageReceived(QString)));
    m_webSocket.open(QUrl(m_webSocketURL));
}

void Controller::onConnected()
{
    if (m_webSocketDebug)
        std::cout << "WebSocket connected" << std::endl;
    m_webSocket.sendTextMessage(QStringLiteral("Rock it with HTML5 WebSocket"));
}

void Controller::onDisconnected()
{
    if (m_webSocketDebug)
        std::cout << "WebSocket disconnected" << std::endl;
}

void Controller::onError(QAbstractSocket::SocketError error)
{
    std::cout << error << std::endl;
}

void Controller::onTextMessageReceived(QString message)
{
    if (m_webSocketDebug)
        std::cout << "Message received:" << message.toStdString() << std::endl;
    m_webSocket.close();
}

我是 websockets 新手,所以我不知道问题出在哪里。任何人都可以提供建议吗?

4

2 回答 2

1

好吧,我验证了你的代码,它似乎工作正常。您给出的错误表明与主机相关的问题。这可能是由于防火墙、isp 或其他阻止/问题。

WebSocket server: ws://echo.websocket.org
WebSocket connected
Message received:Rock it with HTML5 WebSocket
WebSocket disconnected

我想指出,最好保留一个指向 QWebSocket '对象'的指针。m_webSocket声明为QWebSocket *,添加非常方便m_webSocket = new QWebSocket(this)。将对象视为对象是一种很好的做法。您不想不小心尝试直接“复制”一个 QWebSocket。此外,由于 Qt 的内部结构,如果这个“控制器”对象被销毁而 QWebSocket 仍然附加到其他对象(尽管我认为 Qt 已为此做好准备),您最终可能会遇到问题。

于 2015-11-05T02:41:38.267 回答
1

在“ws://echo.websocket.org”打开 websocket 对我来说很好。

这些处理程序在我的项目中就足够了:

connect(&webSocket, SIGNAL(connected()), this, SLOT(onConnected()));
connect(&webSocket, SIGNAL(disconnected()), this, SLOT(onDisconnected()));
connect(&webSocket, SIGNAL(textMessageReceived(const QString&)), this, SLOT(onTextMessageReceived(const QString&)));

我也刚刚意识到我没有连接 error() 信号,但程序代码已经非常可靠一年多了,如果断开连接,就会恢复连接。也许我也应该连接 error() 信号对于不常见的奇怪情况。

错误 QAbstractSocket::RemoteHostClosedError 可能是正确的。尽量在合理的时间内得到回声。我们在项目中使用的 websocket 农场将连接保持长达 50 分钟,因此我们在客户端和服务器之间进行 ping-pong 以在此期限到期之前保持连接有效。

    // you can try that immediately after opening the web socket and also using some QTimer
    m_webSocket.sendTextMessage("Pong!");

只要您正在播放一些公共回声服务,请尝试并查看文本回复。

于 2015-11-05T02:13:55.840 回答