Search results for query: *

  1. M

    Connect Through Priavte Proxy Using Webclient

    The problem was solved with the code below: 'ByPass SSL Certificate Validation Checking System.Net.ServicePointManager.ServerCertificateValidationCallback = _ Function(se As Object, _ cert As System.Security.Cryptography.X509Certificates.X509Certificate, _...
  2. M

    Connect Through Priavte Proxy Using Webclient

    Thanks for reply, JohnH. Now i tried other sites https and it works. The difference between them is a valid security certificate on sites that works. If the certificate is invalidy, i have to choose to continues when in internet explorer. I think that it is the major problem. My application...
  3. M

    Connect Through Priavte Proxy Using Webclient

    Hello, TeachMe and JohnH. I have the same problem. Did you solve it? My code is: Dim request As System.Net.HttpWebRequest = System.Net.HttpWebRequest.Create("https://Mypage.com.br") Dim proxyObject As New WebProxy("Server", 3128) proxyObject.Credentials = New NetworkCredential("User"...
Back
Top