Just wanted to step in and let you know that I was able to authenticate through the proxy using the following method:
Code:
'LOG ON TO THE PROXY.
Try
Dim makeReq As HttpWebRequest
Dim giveCred As NetworkCredential
makeReq = WebRequest.Create("http:\\www.google.com")
giveCred = New NetworkCredential(proxyLoginId, proxyPassword)
makeReq.Proxy = New System.Net.WebProxy("111.111.111.1", 9119)
makeReq.Proxy.Credentials = giveCred
Catch ex As Exception
writeToLog(ex.Message.ToString())
End Try
Gregg Payne