When using SSL connections it is not possible to send the authentication credentials within the HTTP header. Since the connection is encrypted the proxy server can't extract the credentials. For that reason proxies support a special mode called HTTP CONNECT. In this mode the client sends an unencrypted CONNECT header with the credentials to the proxy server. The proxy then establishes a basic connection with the server. Afterwards the client turns encryption on and continues as usual.
TcpIpConnection conn (false, host, port); conn.setProxy("sonne", 8080); HttpProtocol prot(&conn); prot.setProxyAuthentication("proxyuser", "proxypassword"); prot.enableConnect();