
Originally Posted by
jakoskin
Did the FTP example from FluidLauncher demo work or does it fail to connect as well?
FTP example from FluidLauncher have a problem with the input box on my phone brings only digits plus * and #. If I try to connect to the default server (ftp.trollteach.com) the system pop up the connections list (like with pys60), the server not exist so the connection fail but the the program try to connect.

Originally Posted by
jakoskin
Are you trying to connect with QHttp or are you using sockets directly?
Code:
void Window::printConsole()
{
http = new QHttp(this);
connect(http, SIGNAL(done(bool)), this, SLOT(fineRichiesta()));
http->setHost("www.debian.org");
http->get("/index.html");
}
void Window::fineRichiesta()
{
QByteArray page = http->readAll();
box->addTxt(page);
//qDebug() << page;
}
Thank you for your time jakoskin