Activities of "maliming"

excellent!

https://github.com/abpframework/abp/blob/dev/modules/openiddict/src/Volo.Abp.OpenIddict.AspNetCore/Volo/Abp/OpenIddict/Controllers/LogoutController.cs#L12-L24

hi

Logs seem no errors now.

Can you share an online URL and user&password?

I will check it online.

After updating the URL, I'm able to land on login page but it is still not clearing the external logout session, it is supposed to go on custom logout where I'm clearing external login session.

Please share the http request logs.

Thanks

hi

I didn't make it work locally.

Can you try to override this method to change the query way?

https://github.com/abpframework/abp/blob/dev/modules/identity/src/Volo.Abp.Identity.MongoDB/Volo/Abp/Identity/MongoDB/MongoIdentityRoleRepository.cs#L31-L53

hi

You can also change the URLs in the database.

The page exists on the OpenIddict Pro module. Make sure your app has installed this module.

https://commercial.abp.io/modules/Volo.OpenIddict.Pro

hi

System.ObjectDisposedException: Instances cannot be resolved and nested lifetimes cannot be created from this LifetimeScope as it (or one of its parent scopes) has already been disposed.

Can you share a project to reproduce this? liming.ma@volosoft.com

1.

System.TimeoutException: Did not receive any data in the allotted time.

This is not an abp exception. I have no idea.

2. 3.

2024-06-18 11:45:46.597 +00:00 [ERR] An exception occurred while iterating over the results of a query for context type 'Volo.Abp.LanguageManagement.EntityFrameworkCore.LanguageManagementDbContext'. System.Threading.Tasks.TaskCanceledException: A task was canceled. 2024-06-10 09:44:29.585 +00:00 [ERR] Connection id "0HN4967LSB6F1", Request id "0HN4967LSB6F1:00000002": An unhandled exception was thrown by the application.

System.Threading.Tasks.TaskCanceledException: A task was canceled.

You can ignore the TaskCanceledException

4.

2024-06-18 14:43:17.456 +00:00 [ERR] Unhandled exception in circuit '4NnRogiSjg5nPc_ppDUbJwo5Yyvfa4GPBshS89qJcJA'. System.InvalidOperationException: Collection was modified; enumeration operation may not execute.

You can try to override the PageToolbarManager

[ExposeServices(typeof(PageToolbarManager), typeof(IPageToolbarManager))]
[Dependency(ReplaceServices = true)]
public class MyPageToolbarManager : PageToolbarManager
{

    public MyPageToolbarManager(IServiceScopeFactory serviceScopeFactory)
        : base(serviceScopeFactory)
    {

    }

    public async override Task<PageToolbarItem[]> GetItemsAsync(PageToolbar toolbar)
    {
        if (toolbar == null)
        {
            return Array.Empty<PageToolbarItem>();
        }
        
        var contributors = toolbar.Contributors.ToList();
        if (!contributors.Any())
        {
            return Array.Empty<PageToolbarItem>();
        }

        using (var scope = ServiceScopeFactory.CreateScope())
        {
            var context = new PageToolbarContributionContext(scope.ServiceProvider);

            foreach (var contributor in contributors)
            {
                await contributor.ContributeAsync(context);
            }

            return context.Items.OrderBy(i => i.Order).ToArray();
        }
    }
}

Hi

How can I get a CosmosDB-ConnectionString ?

Do you know if I can create it in Docker?

Thanks.

Hi

Please share the full logs.txt file for the TEST environment.

hi

This behavior is by design.

Need to login to the portal even after the tenant activation end date is completed

activation status will be meaningless if you allow users under the tenant to log in.

Showing 4601 to 4610 of 11531 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
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 17, 2025, 07:08
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.