Quote Originally Posted by rmagro View Post
Any Idea ??
try to get IE proxy settings from
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsCurre ntVersion\Internet Settings
parameters:
ProxyEnable
ProxyOverride
ProxyServer


I suppose on a dialog you must take params and fill QAuthenticator...

Qt Code:
  1. void HttpSoapConnection::slotAuthenticationRequired( QNetworkReply *reply, QAuthenticator *authenticator )
  2. {
  3. Q_UNUSED( reply );
  4.  
  5. kWarning() << "Got http authentication request for" << authenticator->realm() <<
  6. "while connecting to" << endpoint_;
  7. }
To copy to clipboard, switch view to plain text mode