Namespaces
Variants
Actions

Add Http Proxy support to existing application using QNetworkProxy

Jump to: navigation, search
Article Metadata

Article
Created: andreagrandi (27 Jun 2012)
Last edited: hamishwillee (11 Oct 2012)

This article shows how to add proxy support at an application level using QNetworkProxy.

Introduction

Suppose you have an existing Qt application that makes use of QtNetwork classes. Qt let you specify a proxy for every connection you create, but there is simple way to set global proxy settings so the whole application will use those settings for any connection it will use.

Idea and implementation

You just need to insert this sample code in your main.cpp (please insert it right before return a.exec();) in the main(...) method. Of course in this way the proxy settings will be hardcoded, but you can always read/save them from a configuration file, using the QSettings class.

QNetworkProxy proxy;
proxy.setType(QNetworkProxy::HttpProxy);
proxy.setHostName("proxy.example.com");
proxy.setPort(1080);
proxy.setUser("username");
proxy.setPassword("password");
QNetworkProxy::setApplicationProxy(proxy);
This page was last modified on 11 October 2012, at 04:15.
186 page views in the last 30 days.
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved