Replies: 1 comment 1 reply
-
I try to put the webview into the highest verbose mode to catch some information, I only get a core process failed without much information on their platform:
Seems like a security policy is preventing the WebView from loading the local resources into my MAUI application. It work on most desktop, but failed for a whole organisation. Any tips or requirements that should allow my application to run normally? Any firewall or anti virus options need to be made for this to work? Any NT domain policies should be white listed??? I do not load remote pages, only the local application in Blazor. Their IT seems clueless on why and they blame my application... We known the drift... |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
We have an issue with our application that do Blazor into MAUI application with the following code:
<BlazorWebView x:Name="blazor_web_view" HostPage="wwwroot/Index.html"> <BlazorWebView.RootComponents> <RootComponent Selector="#app" ComponentType="{x:Type local:Main}" /> </BlazorWebView.RootComponents> </BlazorWebView>
The application is package with .msix with non validated certificate for development purpose (a true trusted certificate will be used for production later). This seem to work just fine for most people when they add our development certificate. But on some computer it doesn't load the WebView at all and the Windows log security filter the application.
For a while we were asking those users to do the following:
This did fix it for a while. But with latest Windows, Edge updates, this no more work. What is the right way to make this work on all machine? We do not load any external web page, only our inner application. Any way to prevent this? Maybe some settings or signing that must be done?
Thanks,
Beta Was this translation helpful? Give feedback.
All reactions