Code: Alles auswählen
void DialogImpl::getTicks()
{
http = new QHttp(this);
connect(http, SIGNAL(done(bool)), this, SLOT(showPage()));
http->setProxy("127.0.0.1", 8080);
http->setHost("qtforum.de");
http->get("/forum/index.php");
}
void DialogImpl::showPage()
{
textEdit->setText(http->readAll());
}BFilter ist der Name des Softproxies, der über localhost angesprochen wird. Hat sich da was geändert oder ist das ein Bug seitens der neuen Qt-Version?Läuft...
UNEXPECTED RESPONSE: [HTTP/1.1 403 Forbidden
Cache-Control: no-cache, must-revalidate
Connection: close
Content-Length: 950
Content-Type: text/html
X-BFilter-Content: generated
]
UNEXPECTED RESPONSE: [HTTP/1.1 403 Forbidden
Cache-Control: no-cache, must-revalidate
Connection: close
Content-Length: 950
Content-Type: text/html
X-BFilter-Content: generated
]
P.S.
Ich benutze Linux