Activities of "maliming"

hi

9.2.3

hi

You can clear the TenantResolvers of AbpTenantResolveOptions and only keep the DomainTenantResolveContributor and CurrentUserTenantResolveContributor

No need to change the account login page.

Thanks.

hi

Team: Your solution uses the modules and themes as NuGet and NPM packages. It doesn't include their source code. This way, you can easily upgrade these modules and themes whenever a new version is available. However, you can not get the source code of these modules and themes.

https://abp.io/faq#is-source-code-included

hi devpomi

What is your license type?

Team or Business?

Thanks.

ok, I will check it.

Thanks.

hi

Can you try to use PreConfigure?

PreConfigure<HttpConnectionDispatcherOptions>(x =>
{
    x.CloseOnAuthenticationExpiration = true;
});

You can also output the AuthenticateResult?.Properties?.ExpiresUtc to logs by adding a custom middleware after UseAuthentication

app.UseAuthentication();

app.Use(async (httpContext, next) =>
{
    var logger = httpContext.RequestServices.GetRequiredService<ILogger<YourModule>>();
    
    var authenticateResultFeature = context.Features.Get<IAuthenticateResultFeature>();
    if (authenticateResultFeature is not null)
    {
        logger.LogError("ExpiresUtc: " +  authenticateResultFeature.AuthenticateResult?.Properties?.ExpiresUtc);
    }
    else
    {
        logger.LogError("authenticateResultFeature is null");
    }
    await next(httpContext);
});

Thanks.

Great

hi

I have already checked the appsettings.secrets.json file, and the AbpLicenseCode key is present with the correct value.

Does the appsettings.secrets.json file exist in the Container? Can you try to move the AbpLicenseCode from appsettings.secrets.json to appsettings.json?

Thanks.

hi

Can you share a minimal project that reproduces the error?

I will download and check your code.

liming.ma@volosoft.com

Thanks.

hi

For your requirements, I suggest downloading the File Management Module source code and modifying it.

Adding new Entity and properties.

Thanks.

Showing 1671 to 1680 of 11558 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.1.0-preview. Updated on December 25, 2025, 06:16
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.