delphi - Do not use IE browser settings when using a proxy with Indy -


In one of our customer sites, we have a Delphi 2007 application that uses several components for using HTTPS Requests. All requests provided by the client are created using proxy settings. To work for this, we need to put the URL in the Trusted Zone section in IE. Due to safety setting, reliable areas have been cleared after one month. This means that we have to add the URL again to our application to work again.

Is there a way to bypass IE settings or use the client side HTT stack so that we can get the https request through the browser?

JD

Indie is client -bound HTTP Stack does not use the Internet Explorer proxy setting. This uses the proxy settings set in proxy-related properties of TIdHTTP component. If you do not want to use those settings, do not set them up.

In addition to this, I am pretty sure that "reliable field" has nothing to do with this, it controls what Internet Explorer does web page Like run script and load ActiveX control Indy never loads, displays, or executes anything. All this is download. The settings of Internet Explorer should not affect your site's ability to connect the wishes of your site.


Comments

Popular posts from this blog

windows - Heroku throws SQLITE3 Read only exception -

lex - Building a lexical Analyzer in Java -

python - rename keys in a dictionary -