Activities of "maliming"

Answer

请使用https://wetransfer.com/ 分享项目

hi

What is your UI type? MVC or Blazor or Angular?

There is a Manage host feature in the tenant list page.

You can enable the feature for host and tenant.

https://abp.io/docs/6.0/Features#feature-management-modal

hi

You need to enable the LDAP feature first. Then you will see the LADP setting .

Answer

手工添加一个Maui Hybrid blazor 客户端

你能分享一个项目吗? 我不太确定你的步骤。

liming.ma@volosoft.com

Thanks.

: )

Answer

你好

Volo.Abp.Http.Client.ClientProxying.ClientProxyBase 中哪个对象是 null?

如何复现呢?

hi

Do you get any errors/exceptions with your custom login page?

Thanks.

hi

Then I try the login again, the app throw 400 error instead of the 409

Please share full 400 error logs.

Thanks

hi

The download token AbsoluteExpirationRelativeToNow is short. You can increase the time

public virtual async Task<DownloadTokenResultDto> GetDownloadTokenAsync()
{
    var token = Guid.NewGuid().ToString("N");

    await DownloadTokenCache.SetAsync(
        token,
        new IdentityUserDownloadTokenCacheItem { Token = token, TenantId = CurrentTenant.Id },
        new DistributedCacheEntryOptions
        {
            AbsoluteExpirationRelativeToNow = TimeSpan.FromSeconds(30)
        });

    return new DownloadTokenResultDto
    {
        Token = token
    };
}
 if (invalidUsers.Any())
{
    var token = Guid.NewGuid().ToString("N");

    await ImportInvalidUsersCache.SetAsync(
        token,
        new ImportInvalidUsersCacheItem
        {
            Token = token,
            InvalidUsers = invalidUsers,
            FileType = input.FileType
        },
        new DistributedCacheEntryOptions
        {
            AbsoluteExpirationRelativeToNow = TimeSpan.FromMinutes(1)
        });

    resultDto.InvalidUsersDownloadToken = token;
}

Yes, 9.3 will fix that.

Thanks.

Showing 1131 to 1140 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