Thank you for your reply. I understand now.
However if you allow me, in the same subject of proxy.
We are facing a strange situation, and would like to know if you had any input on the matter.
Context: it seems at time, the proxy settings are not working for some sites.
To begin with, we should not even have to deal with the proxy settings as they are set in the system proxy, yet as a troubleshooting steps, we started setting it up directly in the code:
I used two approaches:
Code: C#
EO.WebBrowser.Runtime.Proxy = new EO.Base.ProxyInfo(EO.Base.ProxyType.HTTP, proxy, port);
or
Code: C#
EO.WebBrowser.Runtime.ExtraCommandLineArgs = "--proxy-server=\"" + proxy + ":" + port + "\"";
I confirmed either one worked because when browsing to
www.google.com the proxy server popep up asking for credentials, and after I entered the proper ones, the page was rendered successfully.
However some of our very corporate sites never works (those with aa.com in the DNS) I keep getting a time out error.
So the first thoughts is to point the issue to those corporate sites but:
1/ Obviously they are being accessed from countless other locations without any issues
2/ Those same sites when launching IE side by side with EO Browser are loading just fine.
3/ When running
chrome://net-internals/#events (
which now works with EO Browser - thank you!!!), the loading always get stuck at the
CERT_VERIFIER_JOB:
ID Source Type Description
11 URL_REQUEST https://getng.aa.com/
12 DISK_CACHE_ENTRY https://getng.aa.com/
13 HTTP_STREAM_JOB_CONTROLLER https://getng.aa.com/
14 NONE PROXY_CONFIG_CHANGED
15 HTTP_STREAM_JOB https://getng.aa.com/
16 UDP_SOCKET [2001:4860:4860::8888]:53
17 SSL_CONNECT_JOB ssl/getng.aa.com:443
18 HTTP_PROXY_CONNECT_JOB ssl/getng.aa.com:443
19 PROXY_CLIENT_SOCKET_WRAPPER
20 TRANSPORT_CONNECT_JOB ssl/getng.aa.com:443
21 HOST_RESOLVER_IMPL_JOB AA.Web.Proxy2
22 SOCKET ssl/getng.aa.com:443
23 CERT_VERIFIER_JOB Note that when not assigning the proxy at all in the code, the loading get stuck at the same steps, only that the PROXY related data reflects the system proxy. However since this system proxy uses a pac file and is being reference by a file:\\\ and some proxy implementations may reject this type of Uri, I preferred troubleshooting it, setting directly the proxy server.
Would you have any idea then why EO Browser breaks at
CERT_VERIFIER_JOB Thanks a lot for any ideas or next troubleshooting we could try.