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

learn more… | top users | synonyms

1
vote
3answers
603 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 ...
0
votes
2answers
148 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
2answers
507 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")); ...
3
votes
1answer
357 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
34 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 ...
2
votes
1answer
138 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, ...
1
vote
1answer
997 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
26 views

Download page with javascript executed

I want to download a page with javascript executed using python. QT is one of solutions and here is the code: class Downloader(QApplication): __event = threading.Event() def __init__(self): ...
0
votes
1answer
245 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 ...
2
votes
0answers
387 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
0answers
194 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 ...
0
votes
0answers
212 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
114 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
105 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
0answers
63 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
104 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
0answers
477 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
0answers
222 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 ...