How to increase Logging Detail when seeing `ManagedError: One or more errors occurred. (Operation is not supported on this platform.) #59866
Replies: 2 comments
-
Update:
Just to make sure it's not something async causing an issue I re-jigged everything to be synchronous instead of async. Still the same issue persists. I'm registering the grpc service as
where
|
Beta Was this translation helpful? Give feedback.
-
Update 2: This appears to be what's causing the issue. The warning makes sense, but I'm curious how one could get to this without needing to go through all the above steps |
Beta Was this translation helpful? Give feedback.
-
Hi there!
I'm currently experimenting with the Blazor Web App hosting model and playing around with different hosting models for my components.
Note on discussion below - I am unfortunately required to be very vague about code specifics
My solution up until now has always been a server side rendered blazor application. To test out the new features I've created a test application with
dotnet new blazor --interactivity Auto
I've copied over the component from my blazor server application into the new application template within the
.Client
project.Using
<ComponentName @rendermode="InteractiveServer"/>
for this component works 100%.The problem arises when using
@rendermode="new InteractiveWebAssemblyRenderMode(prerender: false)"
or@rendermode="InteractiveWebAssembly"
where I receive a very cryptic.What I can say about my component
It doesn't make any HttpClient calls which have created similar errors as mentioned here and hereIt makes a grpc web call via an injected serviceQuestion
Is there any way one can "switch up" the logging to better understand what's amiss? Currently my debugger only hits some test code I've written in
OnInitialized
and then shortly bombs out after thatOther potentially useful info
Beta Was this translation helpful? Give feedback.
All reactions