Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have to make application that will connect/disconnect to proxy server even while browser is running. I found out that I can change some registry keys value. Here is my code in Visual Basic:

Imports Microsoft.Win32

Public Class Form1

Public Sub SetProxy() 
    On Error Resume Next
    Dim regkey1 As RegistryKey
    regkey1 = Registry.CurrentUser.CreateSubKey("Software\Microsoft\Windows\CurrentVersion\Internet Settings", RegistryKeyPermissionCheck.Default)
    regkey1.SetValue("ProxyServer", "ftp=10.8.0.1:808;http=10.8.0.1:808;https=10.8.0.1:808;socks=10.8.0.1:1080", RegistryValueKind.Unknown)
    regkey1.SetValue("ProxyEnable", True, RegistryValueKind.DWord)
    regkey1.Close()

    Label1.Text = "Connected to Disa's Proxy Server"
    Label1.ForeColor = Color.Green
End Sub


Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    On Error Resume Next


    SetProxy() 
End Sub

Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
    On Error Resume Next
    Dim regKey As RegistryKey
    regKey = Registry.CurrentUser.CreateSubKey("Software\Microsoft\Windows\CurrentVersion\Internet Settings", RegistryKeyPermissionCheck.Default)
    regKey.SetValue("ProxyEnable", False, RegistryValueKind.DWord)
    regKey.Close()

    Label1.Text = "Disconnected from Disa's Proxy Server"
    Label1.ForeColor = Color.Red
End Sub
End Class

This code works well on Firefox, but doesn't on IE and Chrome. While IE is opened it prevents all registry changes in Internet Settings. Chrome needs restart or opening the Proxy settings to reload proxy information. How to force browers to reload proxy configuration?

EDIT Example: ChrisProxy

share|improve this question
I suspect there won't be an easy answer for this, presumably Chrome is only loading the settings on load which is exactly how I would have done it. Maybe you could change your code so that your proxy can be used all the time, but normally does nothing? – PeterJ Dec 26 '12 at 11:32
I don't want to use proxy all the time. F.e I want to browse some pages via proxy and download files without. That's why I want to be able to change it rapidly like Firefox does. The problem is that I usually don't use FF. – Disa Dec 26 '12 at 11:36
I was thinking along the lines of write your own local proxy server so it might use the default settings and have a way to flip to a different server as required. Anyway see how you go for answers, maybe I'm missing something but don't think this will easily be achieved across browsers without either doing that, something browser specific or something at a much lower level on the network stack. – PeterJ Dec 26 '12 at 11:45
This IP is IP of my server connected through VPN – Disa Dec 26 '12 at 11:48
You could have a proxy on 127.0.0.1 (local machine) that swaps between them though, as in a proxy of your own design. Interesting question though and I look forward to seeing other ideas / solutions. – PeterJ Dec 26 '12 at 11:56
show 5 more comments

1 Answer

up vote 1 down vote accepted

You can utilize WebClient to connect and set a proxy. A very simple example is shown below.

Sub GetWebPageWithProxy(ByVal pathToUrl As String, ByVal pathToSaveFile As String)
    Dim wc As WebClient
    wc = New WebClient
    wc.Proxy = New WebProxy(New Uri("http://10.8.0.1:808"))
    wc.DownloadFile(pathToUrl, pathToSaveFile)
End Sub
share|improve this answer
I could programm my 'own browser' that will use my proxy with this code, right? I just want to force reloading proxy setting in Chrome and IE – Disa Dec 26 '12 at 18:23
Yes you could hence what are you trying to really accomplish, why the need for the browser to be open? Read up here on changing on the Fly. (for IE) Not sure about the others codeproject.com/Articles/3651/Change-Internet-Proxy-settings – Sorceri Dec 26 '12 at 19:04
This link is very useful. Thanks – Disa Dec 27 '12 at 9:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.