Namespaces
Variants
Actions
(Difference between revisions)

Add Http Proxy support to existing application using QNetworkProxy

Jump to: navigation, search
m (Hamishwillee - Bot update - Fix ArticleMetaData)
m (Text replace - "<code cpp>" to "<code cpp-qt>")
 
Line 33: Line 33:
 
Of course in this way the proxy settings will be hardcoded, but you can always read/save them from a configuration file, using the {{Qapiname|QSettings}} class.
 
Of course in this way the proxy settings will be hardcoded, but you can always read/save them from a configuration file, using the {{Qapiname|QSettings}} class.
  
<code cpp>
+
<code cpp-qt>
 
QNetworkProxy proxy;
 
QNetworkProxy proxy;
 
proxy.setType(QNetworkProxy::HttpProxy);
 
proxy.setType(QNetworkProxy::HttpProxy);

Latest revision as of 04:15, 11 October 2012

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.
158 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