开发者

Will I be able to tell a Hosted Internet Explorer Web Browser control to always bypass the proxy settings?

开发者 https://www.devze.com 2023-02-17 17:20 出处:网络
Following scenario: 开发者_Go百科 Having a hosted IE web browser control and an in-app web server (like this one).

Following scenario:

开发者_Go百科
  • Having a hosted IE web browser control and an in-app web server (like this one).
  • The web server runs at (e.g.) http://127.0.0.1:14284 and the web browser calls this URL.

Now we have a customer which has a proxy server configured in IE options, and also checked "bypass proxy on local addresses".

Unfortunately, the hosted IE web browser control still used the proxy settings, even for the local URL http://127.0.0.1:14284.

My question is:

Am I somehow able to tell my hosted web browser to always directly call my hosted web server, without going through a proxy?

(I found this thread but still am unsure how to apply this to my question)


I think you have to do some interop, as the docs say you can disable the proxy with the InternetSetOption function. There are a lot of flags you can pass to this function you need INTERNET_OPTION_PROXY or INTERNET_OPTION_PER_CONNECTION_OPTION, theres also a kb-article which describes how to set the proxy settings.

I hope I helped you a bit :)

0

精彩评论

暂无评论...
验证码 换一张
取 消