tags:

views:

261

answers:

1

I am trying to us Qt to access a website and download updates, the problem is that one install base is using a Microsoft ISA proxy server which requires authentication.

Qt gives me a function to supply a username and password: http://doc.trolltech.com/4.5/qnetworkaccessmanager.html#proxyAuthenticationRequired

However other applications do this without asking the user for details. How do I achieve this?

A: 

What type of proxy are you running? See

http://doc.trolltech.com/4.5/qnetworkproxy.html

to find what proxies Qt support.

Henrik Hartz
It is a Microsoft ISA HTTP proxy with authentication, however the QAuthenticate object cannot get the current logged on users credentials to pass to the proxy server. In .NET the WebProxy object has a UseDefaultCredentials parameter which does not require the application to supply a username and password.
Phil Hannent