Re: [Interest] Http Proxy connection woes

2015-04-06 Thread Jason Kretzer
com> //-// From: "Jason R. Kretzer" mailto:ja...@gocodigo.com>> To: Thiago Macieira mailto:thiago.macie...@intel.com>>, "interest@qt-project.org<mailto:interest@qt-project.org>" mailto:interest@qt-project.org>> Subject: Re: [Interest] Http Proxy con

Re: [Interest] Http Proxy connection woes

2015-04-06 Thread Jason Kretzer
ct.org>" mailto:interest@qt-project.org>> Subject: Re: [Interest] Http Proxy connection woes On Monday 06 April 2015 07:52:01 Jason Kretzer wrote: bool ServerCommunication::connectToPort(QString server, int port) { QTcpSocket socket; QNetworkProxy proxy = QNetworkProxy::applicationPr

Re: [Interest] Http Proxy connection woes

2015-04-06 Thread Thiago Macieira
On Monday 06 April 2015 07:52:01 Jason Kretzer wrote: > bool ServerCommunication::connectToPort(QString server, int port) > { > QTcpSocket socket; > QNetworkProxy proxy = QNetworkProxy::applicationProxy(); > socket.setProxy(proxy); These two lines are unnecessary. QTcpSocket will use t

Re: [Interest] Http Proxy connection woes

2015-04-06 Thread Jason Kretzer
// Jason R. Kretzer Lead Application Developer ja...@gocodigo.com<mailto:ja...@gocodigo.com> //-// From: Thiago Macieira mailto:thiago.macie...@intel.com>> To: "interest@qt-project.org<mailto:interest@qt-project.org>"

Re: [Interest] Http Proxy connection woes

2015-02-25 Thread Thiago Macieira
On Wednesday 25 February 2015 05:27:57 Jason Kretzer wrote: > Authentication is NTLM. Would I need to modify anything to account for > that? Yes. Make sure your timeouts are big, since NTLM requires that you connect to the proxy, send the request, disconnect, connect again, send the request, re

Re: [Interest] Http Proxy connection woes

2015-02-25 Thread Jason Kretzer
cieira mailto:thiago.macie...@intel.com>> To: "interest@qt-project.org<mailto:interest@qt-project.org>" mailto:interest@qt-project.org>> Subject: Re: [Interest] Http Proxy connection woes On Tuesday 24 February 2015 13:24:24 Jason Kretzer wrote: Here is the thing: I have software that i

Re: [Interest] Http Proxy connection woes

2015-02-24 Thread Thiago Macieira
On Tuesday 24 February 2015 13:24:24 Jason Kretzer wrote: > Here is the thing: > > I have software that is generally “proxy aware.” I have it running behind > other proxies and they seem to work. The software is now running behind > another proxy and I cannot seem to connect to the outside world

[Interest] Http Proxy connection woes

2015-02-24 Thread Jason Kretzer
Here is the thing: I have software that is generally “proxy aware.” I have it running behind other proxies and they seem to work. The software is now running behind another proxy and I cannot seem to connect to the outside world using it. Here is the code in main.cpp: QNetworkProxy proxy; pro