Dear Support Team,
I installed our software with your Webbrowser version 18.0.15.0 on a VMWare with Windows 10 Enterprise LTSB. Loading any URLs doesn't work. I very often get error "Channel disconnected".
Do you know this issue? Or could it be, that win 10 Enterprise LTSB is not supported?
After getting this error the webview is stuck and I can't reload the URL. Due to this case I catch this error and I have to intitialize webview again (see Code below).
You can reproduce it this way (see code below):
NavigateToActiveConnection(firstBackendUrl) (works in most cases) -> NavigateToActiveConnection(newBackendUrl) -> "Channel disconnected"
My code looks like this:
Code: C#
private void WebViewException(object sender, EO.Base.ExceptionEventArgs e)
{
if (e.ErrorException.Message.Equals("Channel disconnected"))
{
NavigateToActiveConnection(backendSystemUrl);
}
}
Code: C#
private void NavigateToActiveConnection(string url)
{
if(!firstLoad) {
webView.Engine.Stop(true);
webView.Destroy();
webView = new EO.Wpf.WebView();
webControl.WebView = webView;
CustomizeWebView(); // do webview settings
webView.LoadUrl(url);
}
else
{
webView.LoadUrl(url);
firstLoad = false;
}
}
This only happens on my Win 10 Enterprise LTSB WM.
On other systems (Win 7, Win 8, Win 8.1, Win 10) we didn't had this problem until now.
Another question is: do I really need to destroy webview and initialize it again to clear cache and cookies? I need to clear it, because we have different users on our backend systems. It could be the case, that the same URL is loaded, but with outher credentials. If I could clear cache/ cookie another way, I wouldn't need to destroy webview each time I load a new URL.
Do you know any fix for this issue?
Thanks in advance!
Best regards