Aaron Clauson
Aaron Clauson
I can't find the vm i was using when I posted the original issue. I re-tested on my Ubuntu 20.05 physical machine and Windows WSL 18.04 image and both were...
I happened across the original vm that I encountered the original issue on: ```` aaron@pcdodo:~/src/webrtc-cli$ ./webrtc-cli --offer Creating WebRTC peer... Error: mDNS: failed to join multicast group aaron@pcdodo:~/src/webrtc-cli$ lsb_release -a...
> You are talking about "to build on Windows". But the idea is "to build with MSVC". Being a cross-platform tool, CMake is able to [create](https://cmake.org/cmake/help/latest/manual/cmake-generators.7.html) input files for a...
> In fact, I'm surprised it even works with those added, as they result in multiple main() functions. The `msvc` compiler did generate a warning about multiple main()'s. I assume...
> Pion should ignore malformed candidate lines rather than failing the whole SDP. An alternative would be to snip the `zone ID` prefix off the IPv6 address. [RFC 4007: IPv6...
> That's not going to work with link-locals: a link-local is not usable without the scope identifier (you get EINVAL from send/connect). On Windows 10 connection attempts to IPv6 link...
+1. This [dotnet core issue](https://github.com/dotnet/core/issues/3020) also seems to indicate there is no need for the `CspParameters` to be used in this case (there doesn't seem to be any key persistence...
Thanks for the response. I did spot the multiple authentication schemes artcile and attempted all the permutations I could come up with but in each case the Azure AD JWT...
As an additional experiement I did hack the code from [AddMicrosoftIdentityWebApiImplementation](https://github.com/AzureAD/microsoft-identity-web/blob/f07e72f2e1c6bd1e5db865f854b96fb4e725d751/src/Microsoft.Identity.Web/WebApiExtensions/MicrosoftIdentityWebApiAuthenticationBuilderExtensions.cs#L156) into Startup.cs and was able to reduce the volume of token vaidation error messages. ```` services.AddHttpContextAccessor(); services.AddHttpClient(); services.AddSingleton(); services.AddRequiredScopeAuthorization();...
> I suspect this is the same problem > > #1797 Yep looks to be exactly the same problem.