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
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.