-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
V55 unable to access internet through proxy #1948
Comments
How do I investigate my issue further?It's important to remember that -- Finding more info
-- How do I download
|
Possibly https://bitbucket.org/chromiumembedded/cef/issues/2066/branch-2883-pac-proxy-not-work If so you'll have to skip using 55 |
I can confirm that there's definitely a bug with PAC script loading in 55 :) |
|
I had exact problem with v55. Intranet sites worked fine. Non-intranet sites used to work when Fiddler was running in parallel. As mentioned by amaitland comment above that this is fixed, we used 57.0.0-pre01 and this is fixed in that. |
Fixed in 57.0.0 |
I updated to CefSharp 55.0.0. After update I am not able to access internet. All intranet applications are opening fine.
I am behind configured proxy.
if I revert back to 51.0.0 it works. I am using - CefSharp.MinimalExample.Wpf to run my tests.
Here are the details -
What version of the product are you using?
55.0.0
What version are you using? Nuget? CI Nuget? build from a branch? If so which branch? Nuget:
55.0.0 and 53.0.0 (works)
What architecture x86 or x64?
x64
On what operating system?
Win7
Are you using WinForms, WPF or OffScreen?
WPF
What steps will reproduce the problem?
I use CefSharp.MinimalExample.Wpf from CefSharp. test it against 55.0.0 and 51.0.0
What is the expected output? What do you see instead? I must be able to internet in both the cases (55 and 53) but I see timeout when I use 55.0.0.
Not opening an issue (https://github.com/cefsharp/CefSharp/issues) before knowing if it can be resolved using a bit of tweak.
Last Bit -
I also have tried -
var proxy = ProxyConfig.GetProxyInformation();
switch (proxy.AccessType)
{
case InternetOpenType.Direct:
{
//Don't use a proxy server, always make direct connections.
settings.CefCommandLineArgs.Add("no-proxy-server", "1");
break;
}
case InternetOpenType.Proxy:
{
settings.CefCommandLineArgs.Add("proxy-server", proxy.ProxyAddress);
break;
}
case InternetOpenType.PreConfig:
{
settings.CefCommandLineArgs.Add("proxy-auto-detect", "1");
break;
}
}
Cef.Initialize(settings, performDependencyCheck: true, browserProcessHandler: null);
Cef.Initialize(settings, true, true);
The text was updated successfully, but these errors were encountered: