The QtNetwork module provides classes to make network programming easier and portable.

learn more… | top users | synonyms

3
votes
5answers
2k views

Problem in developing FTPClient using Qt

I am trying to implement FTPClient in using QT Network . How can i handle exceptional cases like during downloading network cable is unplugged , not internet connection gone etc.. ? How can my ...
3
votes
1answer
258 views

Webpage returning HTTP 406 error only when connecting from Qt

I have a test page setup at http://mlecturedownload.com/test-qt.php that has the following code: <?php $foo = $_GET['foo']; if ($foo == "0" || $foo == "1") { echo $foo; } else { echo "Invalid ...
2
votes
1answer
2k views

Obtaining MAC address on windows in Qt

I am attempting to obtain mac address on windows xp using this code: QString getMacAddress() { QString macaddress="??:??:??:??:??:??"; #ifdef Q_WS_WIN PIP_ADAPTER_INFO pinfo=NULL; unsigned long ...
2
votes
2answers
226 views

How to send a file along with its filename over QTCPSocket?

Is there any simple way to send a file to server with the filename included so that the filename in server and client are exactly the same? Here is my code Sender QString path = ...
2
votes
1answer
704 views

QT display image obtained from network access manager

I am trying to display the image obtained from the get request made using networkaccess manager. I am able to compile and even able to run it. but I am unable to show the image in a Qlabel. ...
2
votes
1answer
133 views

Socks4 proxy support in QNetworkProxy

I am working on an application that make use of QNetworkProxy. I want to know is, how can I include support for Socks4 type proxy in my application, as Qt only supports NoProxy, DefaultProxy, ...
2
votes
0answers
344 views

Qt synchronous QNetworkAccessManager get

What's the proper way to do a synchronous QNetworkAccessManager::get ? The qt wiki offers an approach, but states "it is not recommended to use this in real applications." The mailinglist offers a ...
1
vote
2answers
1k views

Making HTTP Requests in Qt

I'm new to Qt. I installed Qt for VS2008 and integrated with my VS2010. I just want to know how to make HTTP requests. I've read about QtNetwork but QtHttp is obselete. I also know about libcurl and ...
1
vote
3answers
2k views

QT QTcpServer telnet taking characters \r\n

All I was making a QTcpServer. While testing I used telnet as the Client. My server as listeningat port 5590. I sends Hi! upon new Client Connection. everything was well and fine. But When I type ...
1
vote
2answers
187 views

Is QtWebkit needed to fetch data from websites that need login?

As the title implies, I need to fetch data from certain website which need logins to use. The login procedure might need cookies, or sessions. Do I need QtWebkit, or can I get away with just ...
1
vote
2answers
799 views

QT C++ - QNetworkAccessManager help needed! Class problem

I'm trying to download a page from a server to my QT program, but I've been searching ways to do it and they don't really work a lot. I'm not an expert in QT/C++, so be kind :) Well.. So far I come ...
1
vote
1answer
386 views

Qt 4.8.4 Cross-Compiled for Embedded Linux fails with QNetworkProxy Error

I'm trying to cross-compile Qt for embedded Linux with the following options: (cd /home/user/proj/output/buildroot/build/company-qt-4.8.4; ...
1
vote
1answer
70 views

Qt - network interface statistics

Is there a way to get amount of bytes received/sent by a network interface using Qt on a Windows platform ? If it is cross-platform is even better. I couldn't find anything useful in QtNetwork ...
1
vote
1answer
140 views

QtNetwork SSL Handshake error on https://service.oneaccount.com/onlineV2_B/OSV2?event=login&pt=3

When I use my QT application to download this page: https://service.oneaccount.com/onlineV2_B/OSV2?event=login&pt=3 with QNetworkAccessManager->get(url), I got a network error ...
1
vote
1answer
274 views

qt progress bar is not working properly

I have one problem.. I am making post request to php script. And I am getting back result as an xml. How can I make my qprogressbar working. I have tried this: v oid MainWindow::init() { url = ...
1
vote
1answer
403 views

Qt client send a struct data to boost asio server

I have an issue when my client sends struct data to my server. My client uses Qt tcp and my server uses boost.asio. On my server side, I can receive the buffer data sent by the client, but when I cast ...
1
vote
2answers
566 views

serialization with QT network and deserialization with Boost

In a first time i want to thanks HostileFork to help me to explain my problem. Thanks you ! i'm trying to build a client and a server who send their data through a binary protocol. my problem is i ...
1
vote
1answer
27 views

Accessing QNetworkRequest data before it's sent

Is there any way to see the data that will be sent (or has been sent) during (or after) a call to QNetworkAccessManager::post(QNetworkRequest,QByteArray) on the client side? In other words, I would ...
1
vote
0answers
190 views

Unable to stream ogg local files to webview using custom NetworkAccessManager

I have been investigating this issue but I'm mostly stucked, I'm writing a custom music player using python, pyqt and pywebkit. The case is that I can play .mp3 files or even .wav files without any ...
1
vote
1answer
202 views

QWebPage not working after the first load

I'm writing an application that scrapes some web pages using QWebPage. I'm having some trouble when the response is a Http redirect (e.g 302, 303, etc). The QWebPage simply does not follow the ...
1
vote
1answer
281 views

Cannot compile simple Qt QFtp program

I'm having trouble using QFtp. It simply isn't working for me (program doesn't compile). I broke out of the main program I'm coding to do a little test app for it (a Qt GUI application using Qt ...
1
vote
3answers
566 views

Qt OpenSSL problem - blocked (?) on some computers

I write an app i qt which uses OpenSSL. All was alright, since yesterday. I compiled app and sent to my friend. On his computer application can open https. I open on other computer and it doesn't ...
1
vote
1answer
582 views

Qt Network Test Application [closed]

I have Qt ported on MIPS. Basic GUI test applications are working fine. But any of the Network application is not working. I ran "http" in example/network directory with "http://www.google.com" and ...
1
vote
1answer
969 views

QNetworkRequest (HTTP GET) doesn't fire, after refactoring into a standalone class

I've recently began the tedious process of modularising a large, monolithic audio player application that I wrote roughly 2 months ago. This process is going reasonably well, although it appears ...
0
votes
1answer
159 views

Downloading a file with Qt?

I am trying to figure out a way for my Qt browser app can download a word document from our web app. The web app is written in ExtJS, when (in a browser such as Chrome) a user clicks the "Download ...
0
votes
1answer
379 views

Console Chat Using QTcpSocket and QTcpServer

I want to write a console chat program in qt framework.I have a problem with sending messages. Client sends messages to server but server doesn't take the messages until client program is closed.When ...
0
votes
1answer
49 views

Error in inclusion of <QtNetwork> in cpp file of a BB10 app development

I am currently working on BB10 app development. I was trying out some demo apps given in Blackberry's Developer Portal. I am currently working on an app based on HTTP Communication. When I build ...
0
votes
1answer
100 views

C++ - Qt QObject::connect GET request usage across classes

A quick overview of what's happening: I am trying to do a GET request using Qt's QNetworkAccessManager, but the callback function on my QObject::connect(..) function is not being called. My questions ...
0
votes
1answer
129 views

Qt Client(GUI) Connection to QT Server

All the examples I have seen till now point me to a client server where a client has just one functionality (ex: get the server date and time) and the server just serves this functionality. So when ...
0
votes
1answer
135 views

How to listen to a well-known tcp port using QTcpServer

I want to listen to a well-known tcp port ,say 80 or 25 . How can I do this in Qt and using QTcpServer class? Or to be more generally, a port that is being used by someone else? Thanks in advance.
0
votes
1answer
298 views

Finding Available network Access points in Qt

I need to find available network connections like eth,wlan,bluetooth. Does Qt emit any signals on detection of these access-points automatically? And also if more than 1 connection is available how ...
0
votes
1answer
2k views

problem in making custom root certificate store for SSL using QT?

I am developing my custom browser in Qt using QWebView and I am trying to make my own root cert store of trusted certificates which are taken from mozilla project. I have used ...
0
votes
1answer
50 views

Getting MAC ID in Qt

I am using the following code to get the MAC ID in Qt. main.cpp #include <QtCore/QCoreApplication> #include "QtNetwork/QNetworkInterface" #include "QString" QString getMacAddress() { ...
0
votes
0answers
188 views

Qt Download File - QNetworkAccessManager, not getting data

I'm trying to have my application download a file from a URL, typically an EXE or a Jar, not that this should change much though. I have this all running in a thread, but I don't think that will make ...
0
votes
0answers
103 views

Qt post data request to php server

Hi there I already made the example: QUrl qurl = QUrl("someip/project/log"); QByteArray postData; QUrl params; params.addQueryItem("name","Myname"); postData = params.encodedQuery(); // Call the ...
0
votes
0answers
101 views

Why can QNetworkAccessManager queries prevent Qt applications from exiting?

My Qt application that uses QNetworkAccessManager to access the internet won't exit after closing the main window if there is no working internet connection. Sample application (tested with Qt 4.8, ...
0
votes
1answer
64 views

How do I send two byte via QSslSocket seperately?

I have a client program and a server program that communicate using QSslSockets. In the server program I'm sending a string "Snameadded" if the client successfully connected,I also want to send it a ...
0
votes
0answers
62 views

QtNetwok, Connexion success but write fails!! My handler is called too soon… Really Weird

The problem in my case is that my handler (connexionSuccess) for connected() is called before the result of waitForConnected... it's weird!! My soc.write is failiiiiing... I don't know why :S I write ...
0
votes
0answers
101 views

QNetworkProxy hangs my app for sometime

I am working on an application that make use of QNetworkProxy. My problem is whenever I call QNetworkProxy::setApplicationProxy(proxy); my application hangs for sometime and then again becomes active. ...
0
votes
1answer
250 views

QWebView,How to determine whether this link is a new window?

code News::News(QWidget *parent) : QDialog(parent), ui(new Ui::News) { ui->setupUi(this); ui->webView->page()->setLinkDelegationPolicy(QWebPage::DelegateAllLinks); ...
0
votes
0answers
441 views

client to server data exchange QT

How would I be able to send data to server from client in a multi threaded Qt program in a particular interval of time sequentially? I have written this code on the client side to read all data from ...
0
votes
2answers
142 views

Global variable declaration in Qt

I have made a Gui thread and a QTcpSocket thread in Qt.I want to access data from QTcpSocket thread to Gui thread.How to solve it? Do i need to declare some global variable and how?
0
votes
1answer
214 views

How to tell Qt Network to change outgoing network interface? [duplicate]

Possible Duplicate: How to choose which Network interface to use? My machine is connected to ethernet and wireless LAN. Is there any way to tell Qt to use specified network as outgoing ...
0
votes
0answers
220 views

Qt QNetworkConfigurationManager's onlineStatusChanged signal won't work in fresh Windows XP

My program that uses qtcored4.dll, qtguid4.dll and qtnetworkd4.dll works fine on my development computer that has qtcreator installed. I copy the executable and DLLs above as well as mingwm10.dll and ...
0
votes
2answers
494 views

How to send data back from PHP after a HTTP Post in Qt?

I'm using this code to make a simple HTTP Post ( a login ) QNetworkAccessManager *nwam = new QNetworkAccessManager; QNetworkRequest request(QUrl("http://localhost/laptop/trylogin.php")); ...
0
votes
1answer
231 views

Cannot recieve readyRead signal of QTcpSocket?

You send data across network with QTcpSocket, connect the readyRead signal with your data handler. But readyRead signal maybe not triggered. You could see the data arrived with Wireshark, but ...