Quantcast
Channel: Qt DevNet forums: Qt WebKit
Viewing all articles
Browse latest Browse all 542

ftp user details fetching

$
0
0
I am implementing ftp file transfer in my app. In my app i have to add functionality to get user details and store them in a file I am able to get file uploaded to filezilla but not able to get user details like username password. void example::replyFinished(QNetworkReply *rep1){ QNetworkReply::NetworkError error = rep1->error(); if (error == QNetworkReply::NoError) { QByteArray bts = rep1->readAll(); } In this slot readAll is returning empty. So is their any method of any way of getting user details in app from server I searched on net but not get any solution yet.

Viewing all articles
Browse latest Browse all 542

Trending Articles