Qt QNetworkReply connection closed(Qt QNetworkReply 连接关闭)
问题描述
我尝试在 c++ 中将 post 方法执行到 url https://...,但我收到连接关闭错误.
I try to execute post method in c++ to a url https://..., but I receive connection closed error.
如果我使用像 https://www.google.gr 这样的其他网址,我发现我的代码可以正常工作.
I see that my code works if I use another url like https://www.google.gr.
如果我删除端口 8181 我会收到错误:服务器已回复:未找到.
If I remove the port 8181 I get error: server replied:not found.
我的代码是
static const char *REQUEST_URL="https://...";
static const char *USER = "....";
static const char *PASSWORD = "....";
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
finishedexecuted=0;
QByteArray postData;
postData.append("username=...");
postData.append("password= ...");
m_network = new QNetworkAccessManager(this);
QNetworkRequest request;
request.setHeader(QNetworkRequest::ContentTypeHeader, "application/json");
QUrl url=QUrl(REQUEST_URL);
request.setUrl(url);
QSslConfiguration config = request.sslConfiguration();
QList<QSslCertificate> certs =
QSslCertificate::fromPath("pistopoiitiko.crt");
config.setCaCertificates(certs);
request.setSslConfiguration(config);
QNetworkReply *reply = m_network->post(request,postData);
downloadTime.start();
QObject::connect(reply, SIGNAL(downloadProgress(qint64,qint64)),
SLOT(slotSetProgress(qint64,qint64)));
QObject::connect(m_network, SIGNAL(finished(QNetworkReply *)),
SLOT(slotRequestFinished(QNetworkReply *)));
connect(m_network,
SIGNAL(sslErrors(QNetworkReply *, const QList<QSslError> &)),
this,
SLOT(sslError(QNetworkReply*, const QList<QSslError> &)));
}
void MainWindow::sslError(QNetworkReply* reply,
const QList<QSslError> &errors )
{...}
void MainWindow::slotRequestFinished(QNetworkReply *reply)
{
...
if (reply->error() > 0) {
m_label->setText("Error number = " + reply->errorString());
}
...
}
void MainWindow::slotSetProgress(qint64 received, qint64 total)
{...}
有什么想法吗?
推荐答案
我用这段代码解决了这个问题
i achieved to overcome this problem with this code
QSslConfiguration config = QSslConfiguration::defaultConfiguration();
config.setProtocol(QSsl::SslV3);
然后我收到了我通过 ignoresslerrors() 传递的 ssl 错误
then i received ssl errors that i passed with ignoresslerrors()
这篇关于Qt QNetworkReply 连接关闭的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Qt QNetworkReply 连接关闭
基础教程推荐
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- 初始化列表*参数*评估顺序 2021-01-01
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
- CString 到 char* 2021-01-01
