I'm using an HTTPSocket to access information behind an authenticating proxy server. When I send a query I receive an HTTPStatus 407 (proxy authentication required). I then send back the username:password in base64 encoding, as outlined in the RFC. But that doesn't work -- I just get another 407 message.

Here's a snippet of the socket settings for the request:

      hs.httpProxyAddress = gProxyAddress
      hs.httpProxyPort = gProxyPort

      passWordPlusID = EncodeBase64(password + ":" + id)
      n.SetRequestHeader("Proxy-Authenticate", passWordPlusID)

Anybody know what I'm doing wrong?

Jon
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>

Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>

Reply via email to