Hi, I can't share a sample project as it is a final application.
As far as I know we don't manage that, localhost is my computer and 44362 is the port where the application is exposed when debugging, which is configured in the appsettings.
What are the risks of this being different, and do they need to be the same? If so, how can I change it?
After trying to remove its use, the request continues to fail.
Previously I had an application in blazor webassembly since it was born in net core 6. After migrating to Blazor WebApp I am having problems since one of my components injects the IAccessTokenProvider interface (belongs to Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll).
After the migration this service is no longer injected, moreover, I have tried to inject IAbpAccessTokenProvider, but the implementation I get is Volo.Abp.AspNetCore.Components.WebAssembly.WebApp.CookieBasedWebAssemblyAbpAccessTokenProvider, which after reviewing its code, returns a null string.
By default I use InteractiveAutoRenderMode with prerender set to false. I've tried to indicate in the component that it uses the InteractiveWebAssemblyRenderMode interface but it doesn't solve anything. Any idea?
Option B is the one I am applying and I keep getting errors.
Hi, I am having some problems migrating a solution from blazor web assembly to blazor web app.
I have tried the steps mentioned in the different links: https://abp.io/docs/latest/release-info/migration-guides/abp-8-2-blazor-web-app https://abp.io/support/questions/8378/Render-Modes https://github.com/abpframework/abp/issues/20128
The documentation is not clear, it does not detail anything step by step, it does not indicate if you have to create a new solution, create new projects... In the documentation it is mentioned that you have to run the project "Blazor.Webapp" and the cli only generates "Blazor" and "Blazor.Client". I need a solution because I have to migrate 6 solutions.
Attached are screenshots of the errors I have found:
There are many errors that I am finding
Following these steps I get the following error: An unhandled exception occurred while processing the request. ComponentNotRegisteredException: The requested service 'Semicrol.Arco.Core.HttpApi.Host.Auth.ArcoLoginModel' has not been registered. To avoid this exception, either register a component to provide the service, check for service registration using IsRegistered(), or use the ResolveOptional() method to resolve an optional dependency.