In one of my current projects we decided to give blazor webassembly a try, as blazor serverside works great, but of course got some latency when interacting with the web controls due to all of the logical calculations happening serverside.
One of the largest problems is that we are using our internal windows auth for all of the companies apps in the intranet. It's just stated that it should work, but the official documentations example didn't work in our experiments. The project throws an PlatformNotSupportedException due to the UseDefaultCredentials = true is not supported on browsers.
How can I subscribe to a signalR hub on my server from a webassembly client using blazor and windows NTLM auth?