Set up a proxy server separately for each web browser?

I just learned how to change proxies without restarting the WebBrowser control , but it looks like it is set for ALL WebBrowser

controls on my form. I want to be able to set a different proxy for each control. Is it possible?

If not, are there any tricks I can do to get around this? Maybe some daemon that watches the port and translates this request into a proxy request? For example:

Request on port 12345 -> Connect to url on port 80, but use proxy 1.2.3.4:8080
Request on port 12346 -> Connect to url on port 80, but use proxy 6.4.5.1:8080

      

+2


source to share


1 answer


In our application, we decided to launch each browser in a separate process and improve it. We do not achieve proxy setting for all web browsers in the same process.



+1


source







All Articles