Activities of "maliming"

hi

Have you set the DisableAccessTokenEncryption = false in the authsever project?

Thanks.

https://abp.io/support/questions/6562/How-to-implement-the-token-encryption-in-OpenIdDict#answer-3a105090-f2eb-80e3-6fae-d3b99bdca2ce

Thank you for your solution. 👍

hi

The page will always freeze for a few seconds.

You can consider always using server or wasm mode.

Change all @rendermode="InteractiveAuto" in App.razor file.

@rendermode="InteractiveServer" or @rendermode="new InteractiveWebAssemblyRenderMode(prerender: false)"

hi

Can I reproduce it by connection your redis server?

If so, please share a connection info.

liming.ma@volosoft.com

Thanks.

hi

Yes. This is how webapp initital

First blazor server. Then download wasm file in the background. Next time refresh page will switch to wasm

This process will take a few seconds to initialize wasm.

Thanks.

but I can provide the module configurations and other relevant settings.

You can share a project so that I can reproduce the problem. Then I will know what is wrong.

Otherwise, it will be difficult for me to troubleshoot the problem.

Thanks.

hi IbrahimSarigoz

Can you share a test project that can reproduce the problem?

liming.ma@volosoft.com
Thanks

hi

Upgrade Volo.Abp.Studio.* to >=0.9.25

You can check these packages..

Thanks.

hi

https://abp.io/support/questions/8990/unregistered-version-of-Eziriz's-NET-Reactor#answer-3a18ca49-409a-d43e-0df5-8df4b150c93d

hi

Try to override WebAssemblyCachedApplicationConfigurationClient to fix it, We will fix it in the next version as well.

https://github.com/abpframework/abp/pull/22605/

Thanks.

using Microsoft.JSInterop;
using Volo.Abp;
using Volo.Abp.AspNetCore.Components.Web.Security;
using Volo.Abp.AspNetCore.Components.WebAssembly;
using Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations;
using Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ClientProxies;
using Volo.Abp.AspNetCore.Mvc.Client;
using Volo.Abp.DependencyInjection;
using Volo.Abp.MultiTenancy;

namespace AbpSolution9.Blazor.Client;

[Dependency(ReplaceServices = true)]
[ExposeServices(typeof(ICachedApplicationConfigurationClient), typeof(WebAssemblyCachedApplicationConfigurationClient))]
public class MyWebAssemblyCachedApplicationConfigurationClient: WebAssemblyCachedApplicationConfigurationClient
{
    public MyWebAssemblyCachedApplicationConfigurationClient(
        AbpApplicationConfigurationClientProxy applicationConfigurationClientProxy, 
        ApplicationConfigurationCache cache,
         ICurrentTenantAccessor currentTenantAccessor, 
         AbpApplicationLocalizationClientProxy applicationLocalizationClientProxy, 
         ApplicationConfigurationChangedService applicationConfigurationChangedService, IJSRuntime jsRuntime)
          : base(applicationConfigurationClientProxy, cache, currentTenantAccessor, applicationLocalizationClientProxy, applicationConfigurationChangedService, jsRuntime)
    {
    }

    public override async Task InitializeAsync()
    {
        var configurationDto = await ApplicationConfigurationClientProxy.GetAsync(
            new ApplicationConfigurationRequestOptions {
                IncludeLocalizationResources = false
            }
        );

        var localizationDto = await ApplicationLocalizationClientProxy.GetAsync(
            new ApplicationLocalizationRequestDto {
                CultureName = configurationDto.Localization.CurrentCulture.Name,
                OnlyDynamics = true
            }
        );

        configurationDto.Localization.Resources = localizationDto.Resources;

        Cache.Set(configurationDto);

        if (!configurationDto.CurrentUser.IsAuthenticated)
        {
            await JSRuntime.InvokeVoidAsync("abp.utils.removeOidcUser");
        }

        CurrentTenantAccessor.Current = new BasicTenantInfo(
            configurationDto.CurrentTenant.Id,
            configurationDto.CurrentTenant.Name
        );

        ApplicationConfigurationChangedService.NotifyChanged();
    }
}

Showing 1391 to 1400 of 10652 entries
Learn More, Pay Less
33% OFF
All Trainings!
Get Your Deal
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.0.0-preview. Updated on September 12, 2025, 10:20