-
Notifications
You must be signed in to change notification settings - Fork 10.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Blazor WASM] Upgrading project to .NET 8.0.10 breaks WASM #58313
Comments
Tagging related issues, including those in /dotnet/runtime:
Apologies if the report should be handled on the /dotnet/runtime side of things, please indicate so. |
@maraf is this the same issue we had a while back? |
@omni-htg you can try adding a |
Hey @javiercn, here's some updates on what I could find:
This last item is the most critical for us, as we cannot realistically have our customers manually clearing their cache just to be able to visit the site. Apologies for the rant-y tone -- now for the provided proposal: |
I have the same issue. But I think it is related to the update to Visual Studio 2022 17.11.5! |
It is not a Visual Studio issue! I have the exact same error message when creating a build (Ubuntu 20.04). Edit: "Fixed" for now by manually installing sdk version 8.0.8 |
I haven't upgraded my project to 8.0.10 and I get this issue. But with the visual studio update came an sdk update. I guess that is causing the issue. |
I'm using the SDK Version 8.0.403 now and my app works with packages 8.0.8 and 8.0.10. |
Experiencing the same issue after doing an upgrade today of latest Visual Studio. The Blazor WASM web app does not "boot" if I am not doing a cache clear like Ctrl+F5 in browser. |
On our IIS servers I've fixed the problem using the no-cache directive which seems to fix the issues for our end-users, but it's far from ideal.
|
In our Azure Static Web App, adding following config to
|
Hi everybody. |
@mkArtakMSFT I am sorry, but I don't think this can wait until .NET 10 planning. This really needs to be fixed ASAP or at least Blazor developers need to have some sure-fire cache-busting hints to work around it. Website users should not need to know that in order to avoid a blank screen, it's essential to Ctrl+Refresh their browser. It would be useful if, when these MONO_WASM errors occur, one of the JavaScript scripts could write to the screen, explaining to the user what they need to do (i.e. hard refresh their browser) These sort of issues pop up regularly. It's not just with the latest version of .NET 8. It's frustrating and embarassing and wastes a lot of time explaining this stuff to customers. |
Hi everyone, |
.NET 10 Planning??? I have a lot of people all around the world stuck in the load screen just because i've updated the framework |
I experience the same issue after Visual Studio 2022 was updated yesterday to the latest version. Rolling back to the previous version of Visual Studio made the issue disappears. Thank you for the time in resolving this issue. I hope waiting to release .NET 10 be a joke. |
I don't believe this is a cache issue. I've purged the cache, hard reloaded, tried on different machines and that doesn't fix the issue. |
@pwelter34 What does your Developer Tools / Console Tab show when you reload? |
We are experiencing the same thing on our system. It's not really a viable solution to have to tell all our end users to clear their browser cache. |
I have run into the exact same issue when updating our test environments. Warnings and errors in the browser console are the same, and I could resolve it by disabling the browser cache. Of course, I can not really ask customers to disable the browser cache on first use after the update. So a proper solution to this issue would be appreciated. |
I have run in same problem exact same mentioned by # mono-wallace submitted a question to Microsoft as well which they declared duplicate with existing one - https://developercommunity.visualstudio.com/t/net-80-Blazor-web-application-dependen/10796757 @github Team - This is still UNRESOLVED. Please provide a solution. |
We have only internal customers, so the trick of deleting the browser cache for the deployed site was not a real problem, not user friendly, but doable. One problem that was unresolved, was debugging in Visual Studio 2022. Everytime I got the error "TypeError: u.isDebuggingSupported is not a function" when launching a local debug session using IISExpress. Finally I found the solution. When launching a debug session I had 3 Chrome browser instances open, one with the webapis backend and 2 with the gui's: localhost:xxxx end localhost:yyyy So somewhere Visual Studio 2022 (or IIS Express?) caches something that is linked to the used port. Hopes that this will help some people :-) |
Started to face exact same issue after upgrade of visual studio to latest version. After reading all this thread i was wondering how may such posts should be enough for micrsoft bros to take this stuff serious. |
This issue is going on from past 2+ months and not one from Microsoft is responding on this .. Javier Calvarro Nelson - Since this issue is assignee to you, do you have any SLA to get it resolved and if you could not resolve it the ESCALATE this to higher management. Do we have to write to Satya Nadela then Microsoft team would respond on this ? Atleast keep all the stakeholders UPDATED with latest what is going on to get this issue RESOLVED. submitted a question to Microsoft as well which they declared duplicate with existing one - https://developercommunity.visualstudio.com/t/net-80-Blazor-web-application-dependen/10796757 Similar way @Artak Mkrtchyan [MSFT] declared above mentioned issue as duplicate and after that no update. WHY microsoft team is NOT responding ? WHY you guys keeping silent on this? Can you redirect us to your Manager or schedule a CALL to discuss on this. Please understand the INTENCITY of this issue impacting thousand of users by now. https://github.com/github Team - This is still UNRESOLVED. Please provide a solution. |
pls fix Meanwhile, as a temporary work-around to prevent users having to hard refresh our deployed standalone WASM app, we did the following:
|
Thanks Monsieurvor for your response, could you share details about this particular step how to achieve it ? Meanwhile, as a temporary work-around to prevent users having to hard refresh our deployed standalone WASM app, we did the following: Set all AspNetCore-related packages to <=8.0.8 Appreciate your help on this..!! |
It was simple as commenting out this line It's an optional step, and you might lose some app optimizations, but at least it works, lol. After deployment, you can verify the runtime version in browser devtools -> Sources -> _framework -> |
Has anyone resolved the .NET9 upgrade issue (as many have noted above), or are we patiently waiting for 9.0.1 runtime release? |
probably silense of ms guys means alot to understand that core runtime javascript versions are changed and already cached scripts in browser clients will be required to clear in any case and they don't have any tangible solution to this problem in their hand so far. though having larger bases of external customers will badly impact for people who are using blazor webassembly. |
Here's a workaround that worked for me:
|
@marius-i-marin |
@javiercn - Since this issue is assigned to you . are you working for MICROSOFT ? and is there any one also working in your team to get this RESOLVED ? What SEVERITY Microsoft has acknowledged this issue and could you share your approach to fix this ISSUE? |
@kir0riwal |
one question on this, did you kept this statement in "Index.html" file like this or where do you have this statement ? <script> src="_framework/blazor.webassembly.js"> </script or you updated this statement also with autostart = false , like this - <script> src="_framework/blazor.webassembly.js" autostart="false"> </script please share ... |
You could try another solution:
|
I believe this issue is resolved by one of these two approaches (or both).
Blazor WebAssembly Example: Blazor Server Example: Blazor (the newer approach in App.razor) Example: If implementing a cache buster approach like this, you just need to decide how you want to render the unique string in the query parameter. You could simply update it manually with every release, but you'll probably want to do it programmatically. You'll need to decide what works best for your application. Some people set it by their app version (when the app is versioned), some set it by DateTime Ticks, etc. |
@ElliottBrand @kir0riwal |
We are no longer able to reproduce this issue, though likely this is due to all existing caches expiring. We set the cache control header on all outgoing static file middleware served files to no-cache. This is slightly less efficient, but the extra 302 request/response overhead is acceptable as our application is not extremely high volume and there doesn't exist an automatic file hashing mechanism for js modules loaded at runtime (such a mechanism would likely need a source generator to read the content of bundled js modules, compute a hash, and inject the hash into the file name we pass to the JS interop when loading modules - not something in scope for this project). |
@JeroMiya - could you share how you implemented the cache control header? I tried with all the way outs mentioned in above notifications, but none of them worked out for us. |
After many hours of investigation to possible work-arounds I FINALLY have something working! We removed
That seems to inform the browser that the cached v8.0.8 dotnet.js file should be deleted as when I then load any Blazor URL the browser correctly requests the v8.0.11 version of the file! I will add that this should NOT be necessary! The team that removed the |
Damn straight! Our CTO took the executive decision in May 2020 - when I adopted Blazor WebAssembly - to restrict it to internal tools, and to never allow it for our public-facing web apps. What a wise decision that was, given this and related issues. Telling my internal users to Ctrl+F5 (or hard refresh by some other means) just because the framework version got updated is embarrassing enough. More awful on a day-to-day basis is the failure to launch VS 2022 Pro to debug my web app - just because the framework version changed. Today I wasted hours of my life after upgrading my .NET 8 solution to 9:- endless errors relating to failing to load obscure files like "promise-controller.ts" etc after hitting F5. When I finally got .NET 9 to work with VS 2022 + Edge, I decided to go back to .NET 8... and spent more hours fighting to make that work! This really shouldn't be happening. I never had a problem with Blazor WebAssembly prior to .NET 8 - except for the Razor editor being a bit rubbish. That's improved, but can still really annoy you by doing really dumb stuff. The fact that problems large and small appeared on the release of .NET 8 (or soon after) and still aren't resolved today (over a year later, and with the release of .NET 9) is extremely concerning. At this time, I worry whether these problems will even be resolved by the time of .NET 10 release. For this reason, I'm wouldn't recommend Blazor WebAssembly to any new adopter. But I don't need to worry about there being new adopters, as Microsoft went and made it very difficult for anyone new adopting it by:-
I love Blazor WebAssembly, but I'm concerned for its future for all of these reasons and more. |
@pauldavis-dwe If possible can you share app layout CSHTML file, how did you implemented in there ? let xhr = new XMLHttpRequest();
Appreciate any details on this , if possible ... |
If you are using asp.core for hosting Blazor Web Assembly, then you can use this code in program.cs asp. core project:
In this case all responses from server will be reloaded. But it must be used only with parameters, first time load after update for user. |
This solution worked for me. I used this to clear the cache locally once and commented out. Sorry. By mistake, I thumbed down and not able to change. app.UseStaticFiles(new StaticFileOptions() |
We have been facing this issue for a couple months. We have read this thread, but none of the solutions worked for us. We are observing this issue it on our web servers only, not locally. Our app is built and deployed through an Azure DevOps pipeline. We've tried upgrading the wasm nuget packages, downgrading them. We tried clearing the cache, etc. Nothing worked. The "clean your obj and bin folders" in Visual Studio made little sense for us since we're building in Azure DevOps. And indeed, changing the "Clean" option from "Sources" to "All Build Directories" finally fixed the issue Hope that helps |
Is there an existing issue for this?
Describe the bug
Upon upgrading a Blazor WASM Standalone .NET 8 project to 8.0.10 (including all related NuGet packages), Debugging on Visual Studio 2022 17.11.5 or navigating to a Deployed site with previous version cache breaks during runtime with the following:
Previous issues related to that version difference message recommended clearing out all
bin
andobj
folder -- which I have tried with no success.One of our users reported the same errors on their Chrome / Edge console, for which clearing out their browser cache made it work.
It seems that there might be some sort of incompatibility somewhere that "breaks" instead of "upgrading" the .NET libraries -- so it looks like the issue comes from the moving from one version to the next, not 8.0.10 by itself.
If this is the case, where just by navigating to the site without a "clean cache" it breaks, then it's a bigger regression than I expected.
Hopefully it's not!
Thanks for your time.
Expected Behavior
On VS 2022, debugging should just work flawlessly.
On deployed site, users should NOT be expected to clear their cache to navigate to the site.
Steps To Reproduce
From a Standalone Blazor WASM project starting on 8.0.8, compile and debug. Then, upgrade to 8.0.10 and try again.
On a deployed site, deploy the 8.0.8 version and navigate to it. Then, deploy the 8.0.10 version and with the same browser with the site cached, navigate to the site.
Exceptions (if any)
Clearing cache, or navigating with a "fresh" browser works fine.
.NET Version
8.0.403
Anything else?
.NET 8.0.10 / 8.0.403
Visual Studio 2022 17.11.5
dotnet --info
:.NET SDK:
Version: 8.0.403
Commit: c64aa40a71
Workload version: 8.0.400-manifests.e99c892e
MSBuild version: 17.11.9+a69bbaaf5
The text was updated successfully, but these errors were encountered: